Coordinate transformation is the process of converting from one coordinate system to another.
In this case, we're converting from rectangular coordinates to polar coordinates.
The two key transformations involved are:
- Calculating the radius using \( r = \sqrt{x^2 + y^2} \).
- Calculating the angle using \( \tan^{-1}\big(\frac{y}{x}\big) \), then adjusting the angle based on the quadrant.
Finally, to find the polar coordinates, combine the radius and angle:
For the point (-3, 3), the polar coordinates are \( (3\sqrt{2}, \frac{3\pi}{4}) \).