answersLogoWhite

0

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

9y ago

What else can I help you with?

Related Questions

What does y3 mean?

In mathematics, the notation "y3" typically represents the cube of the variable "y," which is equivalent to y * y * y. This is a shorthand way of denoting the result of multiplying y by itself three times. The cube of a number is the number raised to the power of 3.


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.


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)};