The Cartesian coordinate system is a way to determine the location of a point in a plane using a pair of values:
- The first value, often called the x-coordinate, indicates the point's horizontal distance from the origin (0,0).
- The second value, the y-coordinate, specifies the vertical distance from the origin.
This system is named after René Descartes, who introduced it. To convert from polar coordinates (which use a radius and angle) to Cartesian coordinates, we make use of trigonometric functions:
- Use the formula \(x = r \cos \theta\) to determine the x-coordinate.
- Use the formula \(y = r \sin \theta\) to calculate the y-coordinate.
In the problem we looked at, we converted the polar coordinates \((-4, \frac{3\pi}{2})\) to Cartesian coordinates. Given that \(r = -4\) and \(\theta = \frac{3\pi}{2}\), the calculations became:
- \(x = -4 \times 0 = 0\)
- \(y = -4 \times (-1) = 4\)
Thus, the Cartesian coordinates are \((0, 4)\), showing that the point is directly 4 units above the origin on the y-axis.