Sine and Cosine on the Unit Circle
Learning objectives
- Define sine and cosine using the unit circle
- State and apply the Pythagorean identity
- Evaluate sin and cos at standard angles
- Determine the sign of sin and cos in each quadrant
Right-triangle trigonometry runs out of room. "Opposite over hypotenuse" makes perfect sense when the angle is between and , but what is ? There is no right triangle with a interior angle. To talk about any angle, obtuse, reflex, negative, beyond a full turn, we need a definition that does not depend on triangles at all. The unit circle gives us one. Sine and cosine become the two coordinates of a point sweeping around a circle of radius , and every old triangle fact survives as a special case.
The definition
Draw the unit circle: , centred at the origin. Start at the point on the positive -axis. Sweep counterclockwise through angle radians. You land on a point on the circle. The cosine of is the -coordinate of , and the sine is the -coordinate:
That is the whole definition. It is purely geometric and assumes nothing about triangles. For it recovers the right-triangle ratios, because the radius, the -drop, and the -drop form a right triangle with hypotenuse .
- Signal Processing: Every audio signal can be decomposed into a sum of sines and cosines (Fourier transform); MP3 compression literally throws away the sine/cosine components your ear cannot hear.
- Game Physics: Projectile trajectories use and to split initial velocity into horizontal and vertical components, every Angry Birds shot is two trig calls.
- Astronomy: The position of any orbiting body at time involves and of the orbital angle ; ephemerides for satellite tracking are tables of these values.
(Drag the orange point. Watch trace out as the horizontal distance from the -axis and as the vertical distance from the -axis. The readout shows both signed coordinates and the radian/degree readings.)
The Pythagorean identity
The point lives on the circle , so substituting gives the most-used identity in trigonometry:
It is just the Pythagorean theorem applied to the radius. Memorise it; you will reach for it constantly.
The standard values
The exact values at come from the geometry of the and triangles, scaled to fit inside the unit circle:
Notice the symmetry: as one rises, the other falls, which is the Pythagorean identity in disguise.
Signs by quadrant
The four quadrants split the unit circle into regions where each coordinate has a fixed sign:
- Quadrant I (): both positive.
- Quadrant II (): , .
- Quadrant III (): both negative.
- Quadrant IV (): , .
The mnemonic All Students Take Calculus records the positive-function pattern: All positive in QI, Sine positive in QII, Tangent positive in QIII, Cosine positive in QIV.
Try it
- Set $\theta =
^\circ\sin 30^\circ30^\circ = \pi/6\sin\theta = 0.5$ exactly.
- Rotate to $\theta =$^\circ\sin^2\theta + \cos^2\theta = 1\sin\theta = \cos\theta = \sqrt{2}/2$.
Pause: which is the -coordinate, sine or cosine? If you have to think about it longer than two seconds, this is the section to overlearn. Cosine is . Sine is . The alphabetic order matches the coordinate order.
Try it in code
A trap to watch for
Beginners routinely write for the -coordinate and for the -coordinate. This is a coin-flip mistake that scrambles every calculation downstream. The fix is to anchor the names to the unit circle picture: cosine catches the shadow on the x-axis when light shines straight down; sine catches the shadow on the y-axis when light shines straight across. Or, even simpler, memorise: (cos, sin) in alphabetical order matches (x, y) in alphabetical order. Until the association is automatic, refer back to the widget above.
What you now know
You can produce and for any angle by reading coordinates off the unit circle, apply the Pythagorean identity to solve for one given the other and the quadrant, and recite the standard-angle values. The next section drops the static picture and watches what happens when varies, producing the wave-shaped graphs of and .
Quick check
Mark section complete →
References
- Lang, S. (1971). Basic Mathematics. Springer. Chapter 11, §2, sine and cosine defined coordinate-wise on the unit circle.
- Spivak, M. (2008). Calculus (4th ed.). Publish or Perish. Chapter 15 derives the analytic properties of sin and cos from the unit-circle definition.
- Apostol, T. M. (1967). Calculus, Volume 1 (2nd ed.). Wiley. §2.5 develops trigonometric functions via arc length.