Sine, Cosine, and Tangent: What Do They Actually Measure?

You memorized SOHCAHTOA and it got you through the test. But what is sine actually measuring? It's a height. Cosine is a width. And tangent is a shadow on a wall that shoots off toward infinity.

By Petrus Sheya

August 6, 2026 · 5 min read

Quick question: when you hear "sine of 30 degrees," what is that number actually measuring?

If your honest answer is "something you look up on a calculator," you're in good company. Most of us learned SOHCAHTOA as a memory trick, passed the test, and never actually saw what the trick was describing. That's a shame, because the real answer is simple and physical. Sine and cosine are coordinates. Tangent is a length on a wall. None of it needs memorizing once you see where it comes from.

We're going to rebuild all three from one picture: a single point spinning around a circle.


Forget SOHCAHTOA. Start with a spinning point.

Picture a wheel of radius 1, spinning around its center, with a single point riding the rim. As that point goes around, two things change at every instant: how far up or down it sits from the center, and how far left or right.

That up-and-down distance is exactly what sine measures. That left-and-right distance is exactly what cosine measures. Nothing more mysterious than that.

Drag the point around the circle. Its height above center is sin θ, its sideways distance from center is cos θ.

cos θsin θ
Point (cos θ, sin θ)(0.76, 0.64)
sin θ0.644
cos θ0.765

Drag the point yourself. The amber segment is sin θ, the point's height above the horizontal axis. The teal segment is cos θ, its horizontal distance from center. Push the point to the very top and its height maxes out: sin θ = 1. Slide it onto the right side of the axis and its height vanishes: sin θ = 0.

Since the wheel has radius 1, we write the point's location directly as coordinates:

(cosθ,sinθ)(\cos\theta, \sin\theta)

That's the whole definition. Cosine is the x-coordinate. Sine is the y-coordinate. Everything else in trigonometry builds on top of that one picture.


Ratios don't care about size, and that's the whole trick

Now connect the spinning point back to the center, and drop a straight line down to the horizontal axis. You've just drawn a right triangle. Every angle on that circle sweeps out one of these.

Here's the useful part: shrink that triangle or blow it up, and the angle stays the same. So does the ratio between any two of its sides.

Change the angle to reshape the triangle, change the size to scale it. The three ratios never move.

θadjacent = 0.82opposite = 0.57hyp = 1.00
opp / hyp = sin θ0.574
adj / hyp = cos θ0.819
opp / adj = tan θ0.700

Cycle the size button and watch the triangle grow. The side lengths change. The three ratios at the bottom don't move at all. That's not a coincidence, it's the reason SOHCAHTOA works on a triangle of any size, not just the radius-1 wheel we started with.

Once you see that, the classic formulas are just names for ratios you already understand:

sinθ=oppositehypotenuse,cosθ=adjacenthypotenuse,tanθ=oppositeadjacent\sin\theta = \frac{\text{opposite}}{\text{hypotenuse}}, \qquad \cos\theta = \frac{\text{adjacent}}{\text{hypotenuse}}, \qquad \tan\theta = \frac{\text{opposite}}{\text{adjacent}}

Shrink any of these triangles down until the hypotenuse equals 1, and "opposite" becomes sin θ while "adjacent" becomes cos θ, exactly like the circle. The triangle and the circle were never two different topics. The circle is just the triangle with its hypotenuse fixed at 1.


So what is tangent actually measuring?

Tangent is defined as sin θ divided by cos θ, but that ratio has its own physical picture, and it's a good one.

Draw a vertical wall that just touches the circle on its right side. Take the spinning radius and extend it, as a straight ray, until it hits that wall. The height where it lands on the wall is exactly tan θ. That's also where the name comes from: the wall is tangent to the circle, meaning it touches the circle at exactly one point.

Extend the spinning radius until it hits the wall touching the circle. The height where it lands is tan θ.

tan θ
tan θ0.577
sin θ / cos θ0.577
Distance to 90°60°

Push the angle toward 90°... and watch the mark climb the wall faster and faster the closer you get. At 90°, the spinning ray points straight up, parallel to the wall. A ray parallel to the wall never reaches it, no matter how far you extend it. That's the geometric reason tan 90° is undefined. It isn't a rule someone made up, it's what happens when the ray simply stops intersecting the wall.

tanθ=sinθcosθ\tan\theta = \frac{\sin\theta}{\cos\theta}

Notice the denominator: cos θ hits zero exactly at 90°, which is exactly where the wall-crossing point runs off toward infinity. The algebra and the geometry are describing the same event.


Where the wave comes from

So far θ has been frozen in place, a snapshot of one angle. Let the point actually spin over time and something new shows up: sine and cosine turn into waves.

Let the point actually spin. Its height traces the sine wave, its width traces the cosine wave, both from the same motion.

Angle swept0°
sin θ0.001
cos θ1.000

Hit play and watch the dashed line carry the point's height over to the amber curve on the right. That curve is nothing but a record of the point's height, plotted as it changes moment to moment. The teal curve does the same thing for the point's width. Two waves, one spinning point, two different things being tracked off it.

Notice the wave repeats every full turn. Once the point returns to where it started, its height and width repeat too. We call that repeat distance the period, and for one full revolution it's 2π2\pi radians:

sin(θ+2π)=sinθ,cos(θ+2π)=cosθ\sin(\theta + 2\pi) = \sin\theta, \qquad \cos(\theta + 2\pi) = \cos\theta

That's why sine and cosine show up everywhere something repeats: sound waves, seasons, alternating current, the tides. All of it is the same spinning point, viewed from a different angle.


The short version

Sine is the height of a point spinning around a circle of radius 1. Cosine is that same point's horizontal distance from the center. Tangent is where the spinning radius, extended into a ray, lands on a wall touching the circle, which is also just sine divided by cosine. Shrink the circle's triangle to any size and the three ratios stay locked in place, because that's what a ratio means. Let the point actually spin, and the two coordinates unwind into the sine and cosine waves you've seen everywhere from sound to seasons.

None of it was ever a memory trick. It was a circle the whole time.


All visualizations are interactive React components running entirely in your browser, rendered with SVG. The circle-to-wave animation uses requestAnimationFrame with a looping phase accumulator. No libraries beyond React.