Skip Ahead:
Main Coordinates Page |
x, y, z Cylindrical Coordinates |
r, θ, φ Cylindrical Coordinates
Cylindrical Coordinates
r, θ, z Cylindrical Coordinates
In the simulation below you can see the cylindrical coordinate system which measures the distance between the head of the arrow and its ending point, starting at the origin (0, 0, 0). Notice how in this simulation you input the r, z, and φ values to create the vector. This is one way of plotting a point using cylindrical coordinates.
Cylindrical coordinates are a coordinate system that uses the radius r, an angle θ, and a z coordinate in three dimensions. Cylindrical coordinates are best used to measure where something is on a circular surface. For example, cylindrical coordinates can be used to measure the radius and angle of an object that is located at a certain height. Cylindrical coordinates measure where an object is located on the surface of the circle through measuring the distance between the origin and the radius of the circle as well as knowing the angle at which an object is oriented in. For example, you can measure points away from the origin (0, 0, 0) and with a given angle, you can know which direction an object is pointing towards. It is worth noting that in cylindrical coordinates, the radius r, ranges from 0 to infinity, in any direction. The angle θ however has a limited range. It ranges from 0 to 2π. The cylindrical coordinate system differs from the three dimensional cartesian coordinate system in that the radius and angle are provided, and the components are left to be calculated.
The simulation above shows the cylindrical coordinate system in three dimensions, over the x, y, and z axes. Here however you input the radius r, the angle θ and the z component, which, you can notice, produces a black line (representing a vector) plotted and pointing to a specific point on the cylinder. The r, θ, and z that you input, when written inside parentheses, these are the coordinates of the point on the cylinder's surface that the vector is pointing to. For example if you input the r, θ, and z to be: 5, 56.43, and 17, in parentheses, this is written as (5, 56.43, 17). These values now face a single point that is defined at (5, 56.43, 17) from the origin (0, 0, 0). If you want to convert these coordinate points to figure out the x, y, and z components of the vector facing this point, these values can be calculated using a few of the formulas mentioned below.
Cylindrical coordinates can be converted to three dimensional cartesian coordinates using the following formulas:
\[ x = r \cos(\theta) \]
\[ y = r \sin(\theta) \]
\[ z = z \]
Converting to three dimensional cartesian coordinates with the values given:
\[ x = r \cos(\theta) \]
\[ x = 5 \cos(56.43) \]
\[ x = 2.76 \]
\[ y = r \sin(\theta) \]
\[ y = 5 \sin(56.43) \]
\[ y = 4.17 \]
\[ z = z \]
\[ z = 17 \]
\[ z = 17 \]
Go Back to x, y, z Cylindrical Coordinates Go Back to Coordinates Page