If starting from the Cartesian coordinate system to convert to the polar coordinate system use the Pythagorean theorem, x2 + y2 = r2. The angle is found by using the arctangent of the angle at the origin, tan-1(y/x).
The above leads to the equations r = (x2 + y2)1/2 and θ = tan-1(y/x). Points where x = 0 must be handled with thought since the arctangent is not defined. In such cases θ = π/2 when y is positive, and θ = 3π/2 when y is negative. Also, the signs of both x and y need be considered, and adjustments made if the point (x, y) is not in the first quadrant.
Example 1: Find the polar coordinate representation of the point (3, 4).
r = (x2 + y2)1/2 = (32 + 42)1/2 = (9 + 16)1/2 = 5
θ = tan-1(4/3)
(5, tan-1(4/3))
Example 2: Find the polar coordinate representation of the point (-3, -3).
In this example there are two ways to approach the transformation into polar coordinates.
In one case the radius is -3, taking the negative root of ((-3)2 + (-3)2)1/2 = -3 and θ = tan-1(1) = π/4.
Another possibility is ((-3)2 + (-3)2)1/2 = 3 and θ = tan-1(1) = π/4, adjusted to 5π/4 since both x and y are negative, placing the point in the third quadrant.
(-3, π/4) or equivalently (3, 5π/4)
Example 3: Find the polar coordinate representation of the point (0, 0).
The radius is 0, and the angle is arbitrary.
Example 4: Find the polar coordinate representation of the point (0, 3).
The radius is (02 + 32)1/2 = 3, and θ = π/2, since y is positive. The arctangent does not exist for any angle terminating of the vertical axis.
Comments