Module 2 · Lesson 2.1

The Unit Circle — Angles as Rotation, Not Just Triangles

An angle isn't just a corner of a triangle — it's how far a unit-length arrow has rotated around a circle.

Intuition

Picture an arrow exactly one unit long, pinned at the center of a circle and pointing straight along the positive x-axis. Now spin it. The angle it has swept through, measured from its starting position, is all an "angle" really is — a rotation, not a fixed shape drawn on paper.

As the arrow spins, its tip traces the unit circle, and its tip's coordinates change smoothly. Those coordinates are exactly what cosine and sine measure: how far right (or left) and how far up (or down) the tip has moved for a given amount of rotation.

Core concept

An angle is how far a unit vector has rotated. The horizontal position of the rotated tip is its cosine; the vertical position is its sine. This is the same idea used to spin a character or a camera in a game engine — the engine just tracks how far a direction arrow has turned.

Angle60°
x = cos 60°0.5
y = sin 60°≈ 0.866
AnswerTip at (0.5, 0.866)

Interactive Lab

Drag the point around the circle and watch the angle and coordinates update live.

Angle (θ)
x = cos θ1.000
y = sin θ0.000

Key Idea

$$ (x, y) = (\cos\theta, \sin\theta) $$

For any angle $\theta$ measured from the positive x-axis, the tip of a unit-length arrow rotated by $\theta$ lands at the point $(\cos\theta, \sin\theta)$ on the unit circle. Because the arrow never changes length, its horizontal and vertical parts always satisfy $\cos^2\theta + \sin^2\theta = 1$.

$\theta$The rotation angle, measured from the positive x-axis
$x$Horizontal position of the rotated tip
$y$Vertical position of the rotated tip
$\cos\theta$How far right the tip has moved
$\sin\theta$How far up the tip has moved