1/9
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What is the transformation from Cartesian to cylindrical coordinates for x?
x = r * cos(theta)
What is the transformation from Cartesian to cylindrical coordinates for y?
y = r * sin(theta)
What is the transformation from Cartesian to cylindrical coordinates for z?
z = z (remains the same)
What is the formula for r in cylindrical coordinates?
r = sqrt(x^2 + y^2)
What is the formula for theta in cylindrical coordinates?
theta = atan2(y, x)
What is the transformation from Cartesian to spherical coordinates for x?
x = p * sin(phi) * cos(theta)
What is the transformation from Cartesian to spherical coordinates for y?
y = p * sin(phi) * sin(theta)
What is the transformation from Cartesian to spherical coordinates for z?
z = p * cos(phi)
What is the formula for p in spherical coordinates?
p = sqrt(x^2 + y^2 + z^2)
What is the formula for phi in spherical coordinates?
phi = acos(z / p)