Lesson_06a.mws
- Initializations
- Conversion between coordinate systems.
- Examples
- Example 6a.1
Find the cartesian coordinates of the point
P = [r, theta, z]; =
[3, Pi/6, 5];
- Example 6a.2
Find the cylindrical coordinates of the point
P = [x, y, z]; =
[1, 2, 3];.
- Example 6a.3
Find the cartesian coordinates of the point
P = [rho, theta, phi]; =
[4, Pi/6, Pi/4];.
- Example 6a.4
Find the spherical coordinates of the point
P = [x, y, z]; =
[1, 2, 3];.
- Example 6a.5
Find the cylindrical coordinates of the point
P = [rho, theta, phi]; =
[3, Pi/3, Pi/6];
- Example 6a.6
Find the spherical coordinates of the point
P = [r, theta, z]; =
[2, Pi/4, 7];.
|