polar coordinates
When you give directions you rarely say 'go three blocks east and four blocks north' — you say 'head that way for five blocks'. That second way, a distance and a direction, is the heart of polar coordinates, an alternative to the usual grid that pins a point down by how far and which way rather than by left-right and up-down.
A point is written (r, theta): r is the distance from a fixed centre called the pole (the origin), and theta is the angle the line to the point makes with a fixed reference direction (the positive x-axis), measured counterclockwise. So (3, 90 degrees) means 'go out 3 units, in the direction 90 degrees', landing straight up. Converting to and from ordinary Cartesian coordinates uses exactly the unit-circle relations: x = r cos theta and y = r sin theta going one way, and r = sqrt(x^2 + y^2) with theta = arctan(y/x) (adjusted for the quadrant) coming back. Unlike Cartesian coordinates, a polar address is not unique: the same point has many names, since adding 360 degrees to theta returns you to the same spot, and a negative r means 'go backwards', so (−3, 90 degrees) equals (3, 270 degrees).
Polar coordinates shine whenever a problem has a centre of symmetry — circular motion, radar and sonar, antenna patterns, spirals, planetary orbits. Curves that are tangled messes in x and y often become a single clean equation in r and theta. The two things to watch are the non-uniqueness of names and the quadrant correction when finding theta, since arctan alone cannot tell the third quadrant from the first.
Convert the polar point (4, 30 degrees) to Cartesian: x = 4 cos 30 degrees = 4 x (sqrt(3)/2) ≈ 3.46 and y = 4 sin 30 degrees = 4 x 0.5 = 2. So (4, 30 degrees) in polar is about (3.46, 2) in the usual xy-plane.
The bridge between polar and Cartesian is just x = r cos theta, y = r sin theta — the unit circle again.
A point has infinitely many polar names (theta plus any multiple of 360 degrees, and negative r reversing the direction), unlike the unique Cartesian pair; and recovering theta needs a quadrant check, since arctan(y/x) cannot distinguish opposite directions.