answersLogoWhite

0


Best Answer

X, Y and Z moves in the rubik's cube don't actually move any sides, it is rotation of the whole cube, to hold it from a different angle

with a X move you hold the cube from either the Up or Down face in front of you

with a Y move you hold the cube from either the Left or Right face in front of you

with a Z move you hold the cube with the same face in front of you, but you make the Up face go to the Right face

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The 'S' in standard notation means to turn the middle layer in between the F and B faces in the direction as if you were moving F.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the y move on the Rubik's Cube mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

If x and y are integers is x less than y if The cube of x is less than the cube of y?

Yes it is.


What is the cube root of y?

y^1/3


How do you square a number and cubing a number?

For number = Y, the square is Y*Y, the cube is Y*Y*Y


Is cube a quadrilateral?

No.


What is a cube root function?

The cube root function is the inverse of the cube function. So, given a number y, the cube root function seeks to find a number, x, such that multiplying 1 by that number 3 times gives y. [Note that this is equivalent to multiplying the number by itself two times, not three.] That is, cuberoot(y) = x <=> x^3 = y For example, 2*2*2 = 8 so the cube root of 8 is 2. 1.5^3 = 3.375 so the cube root of 3.375 is 1.5 (-3)^3 = -27 so the cube root of -27 is -3. The cube root of y is denoted by y^(1/3). It can also be written using the radical symbol like for a square-root, but the radical must be preceded by a superscript 3. Apologies, but this browser is crap and so I cannot show that representation.


What is the difference between a cube and a cube root?

The cube of a number is the value of the number multiplied by itself two times (or 1 multiplied by the number three times). A cube root is the inverse function so that if y is the cube of x the x is the cube root of y.


How do you factor X to the third power plus Y to the third power?

x^3+y^3 Cube root of the first, x plus cube root of the last, y times What it takes to make the first number, x^2 Opposite sign, - Product of the two cube roots, -xy Then what it takes to make the last. (x+y)(X^2-xy+y^2)


What is the equation for y varies directly as the cube of x?

y = c*x3 where c is the constant of proportionality.


What is the cube root of y to the 15th power?

Using the symbol "^" for powers: (y^15)^(1/3) = y^(15 times 1/3) = y^5.


What is a factor of both 2y cube plus y squared and 4y to the fourth powerp plus 2y cube?

2y + 1


Why do you need to find the surface area of a cube?

length of a side.If a side Y long. Surface area =Y x Y x 6


How do you write a C plus plus program to calculate the cube of integer float and double numbers?

The following C++ template function is all you need to calculate the cube of any arithmetic type: template<typename T> T cube (T val) { return val*val*val; } Usage: int x {cube<int> (42)}; float y {cube<float> (3.14)}; double z {cube<double> (x * y)};