Tested tool guide
Tested browser tools
Checked August 16, 2026
What Unit Circle Explorer does, with a checked example
The Unit Circle Explorer draws a circle of radius 1 centered on the origin and places a movable point on its rim. Drag the point, or type an angle, and the tool reads the point's coordinates as cosine and sine, then divides them for tangent, updating all three live. The surprise most users hit first: the angle is measured counterclockwise from the positive x-axis, so 0 degrees sits at 3 o'clock, not 12. And the coordinates come out as (cos, sin) - the horizontal value is cosine, the vertical value is sine - which is easy to get backwards.
Worked example
A concrete input and expected output from the current implementation.
Input
Set the angle to 30 degrees (drag the point to the 30-degree mark).
->
Expected output
cos 30 degrees = 0.866, sin 30 degrees = 0.5, tan 30 degrees = 0.577. The point sits at (0.866, 0.5).
On a unit circle the point at angle theta is exactly (cos theta, sin theta). At 30 degrees the 30-60-90 triangle gives sin = 1/2 and cos = sqrt(3)/2, and tan = sin / cos = 1/sqrt(3), which rounds to 0.577.