Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Sine and Cosine Function Values

Lesson ~10 min read 8 MCQs

In simple terms: In simple terms, this topic is about finding the exact (x, y) coordinates of a point on any circle, just by knowing the circle's radius and an angle.

Why this matters

Imagine you're on a giant Ferris wheel, like the Centennial Wheel at Chicago's Navy Pier. You've stopped right at the top, and your friend on the ground wants to take the perfect photo. They yell up, "Where are you, exactly?"

It's not enough to say "at the top." For the perfect shot, they need your precise location. If you knew the wheel's radius and the angle your cart has rotated from the starting point, could you give them your exact (x, y) coordinates relative to the center of the wheel?

Absolutely. This is the core idea we're exploring today. We're moving beyond just angles and triangles to pinpoint exact locations in a circular path. You'll learn how sine and cosine are the keys to translating rotational motion into the familiar (x, y) grid we use for everything from maps to video games.

A Ferris wheel cart's position can be described by its angle and the wheel's radius.

Concept overview

flowchart TD
    A[Start: Given r and θ] --> B{1. Determine Quadrant of θ};
    B --> C[2. Find Reference Angle θ_ref];
    C --> D{3. Find cos(θ_ref) and sin(θ_ref) from Special Triangles};
    D --> E[4. Apply +/- Signs based on Quadrant];
    E --> F[5. Calculate x = r * cos(θ)];
    E --> G[5. Calculate y = r * sin(θ)];
    F & G --> H[End: Coordinates (x, y)];
This flowchart shows the 5 steps to find the (x, y) coordinates of a point on a circle. It starts with a given radius and angle, then moves through determining the quadrant, finding the reference angle, using special triangles, applying the correct signs, and finally calculating the x and y coordinates.
Any point on a circle can be defined by its radius and angle from the positive x-axis.

Core explanation

From Rotation to Location: The Big Idea

Let's start with a circle centered at the origin (0, 0) in the xy-plane. This circle has a radius, which we'll call r.

Now, imagine drawing an angle, θ (theta), in standard position. Its initial side is on the positive x-axis, and it rotates counterclockwise. The terminal side of this angle will intersect our circle at some point, which we'll call P. This point P has coordinates (x, y).

Our goal is to find the values of x and y using only the radius r and the angle θ.

Building the Bridge with SOHCAHTOA

To connect r and θ to x and y, we can create a right triangle. Drop a perpendicular line from point P straight down to the x-axis.

A right triangle formed by the radius, x-coordinate, and y-coordinate.


[[inline_svg]]

Look at the triangle we just formed:

  • The hypotenuse is the radius of the circle, r.
  • The adjacent side (next to angle θ) is the horizontal distance from the origin, which is our x-coordinate.
  • The opposite side is the vertical distance from the x-axis, which is our y-coordinate.

Remember our old friend SOHCAHTOA? Let's apply it.

  • CAH
    cos(θ) = Adjacent / Hypotenuse = x / r
  • SOH
    sin(θ) = Opposite / Hypotenuse = y / r

Now, let's solve for x and y.

  • If cos(θ) = x / r, we can multiply both sides by r to get: x = r cos(θ)
  • If sin(θ) = y / r, we can multiply both sides by r to get: y = r sin(θ)

And there it is. That's the formula. The coordinates of any point P on a circle of radius r at an angle θ are:

P(x, y) = (r cos(θ), r sin(θ))

This single formula is the heart of this topic. It directly connects an angle and a radius to a specific (x, y) point.

Finding Exact Values with Special Triangles

Your calculator can find cos(θ) and sin(θ), but it will give you long decimal approximations. The AP exam will often ask for exact values. This means no decimals—we need fractions and square roots.

To get these exact values, we rely on two special right triangles. You should have these memorized.

Exact sine and cosine values for common angles using special triangles.

1. The 45°-45°-90° Triangle (Multiples of π/4) This is an isosceles right triangle. If the two legs have a length of 1, the hypotenuse is √2.

  • sin(π/4) = Opposite/Hypotenuse = 1/√2 = √2 / 2
  • cos(π/4) = Adjacent/Hypotenuse = 1/√2 = √2 / 2

2. The 30°-60°-90° Triangle (Multiples of π/6 and π/3) This triangle comes from slicing an equilateral triangle in half. The sides are in a 1 : √3 : 2 ratio.

  • For the π/6 (30°) angle:
    • sin(π/6) = Opposite/Hypotenuse = 1 / 2
    • cos(π/6) = Adjacent/Hypotenuse = √3 / 2
  • For the π/3 (60°) angle:
    • sin(π/3) = Opposite/Hypotenuse = √3 / 2
    • cos(π/3) = Adjacent/Hypotenuse = 1 / 2

Don't Forget Your Signs: The Four Quadrants

Think about the xy-plane:

  • Quadrant I (0 to π/2)
    x is positive, y is positive. (+ , +)
  • Quadrant II (π/2 to π)
    x is negative, y is positive. (- , +)
  • Quadrant III (π to 3π/2)
    x is negative, y is negative. (- , -)
  • Quadrant IV (3π/2 to 2π)
    x is positive, y is negative. (+ , -)

Since x = r cos(θ) and y = r sin(θ), the signs of cos(θ) and sin(θ) must match the signs of x and y.

A helpful mnemonic is All Students Take Calculus:

  • All (Quadrant I): All functions (sin, cos, tan) are positive.
  • Students (Quadrant II): Sine is positive (so cosine is negative).
  • Take (Quadrant III): Tangent is positive (so sine and cosine are both negative).
  • Calculus (Quadrant IV): Cosine is positive (so sine is negative).

When you're given an angle like θ = 3π/4, first figure out its quadrant (Quadrant II). Then, find its reference angle—the acute angle it makes with the x-axis. For 3π/4, the reference angle is π/4.

You'll use the special triangle values for π/4, but then apply the correct signs for Quadrant II: cosine is negative, sine is positive.

  • cos(3π/4) = -cos(π/4) = -√2 / 2
  • sin(3π/4) = +sin(π/4) = +√2 / 2

By combining the formula (r cos θ, r sin θ) with your knowledge of special triangles and quadrant signs, you can find the exact coordinates for any of these key angles on any circle.

Worked examples

Example 1

A Point in Quadrant I

Problem: Find the coordinates of the point P on a circle with radius r = 10 that corresponds to an angle of θ = π/3.

Step 1: Identify the formula and given values. The formula to find the coordinates (x, y) is (r cos θ, r sin θ). We are given r = 10 and θ = π/3.

Step 2: Determine the values for cos(θ) and sin(θ). The angle π/3 is one of our special angles. From the 30-60-90 triangle, we know:

  • cos(π/3) = 1/2
  • sin(π/3) = √3 / 2 Since π/3 is in Quadrant I, both sine and cosine are positive. We don't need to change any signs.

Step 3: Calculate the x and y coordinates. Now, plug the values into our formula.

  • x = r cos(θ) = 10 * (1/2) = 5
  • y = r sin(θ) = 10 * (√3 / 2) = 5√3

Solution: The coordinates of point P are (5, 5√3).


Example 2

A Point in Quadrant III

Problem: A point lies on a circle of radius 4 centered at the origin. Find the exact coordinates of the point corresponding to an angle of θ = 5π/4.

Step 1: Identify the formula, values, and quadrant. Formula: (r cos θ, r sin θ) Given: r = 4, θ = 5π/4. The angle 5π/4 is slightly more than π (which is 4π/4), so it's in Quadrant III. In this quadrant, both x and y coordinates are negative. This is a critical check to make right away.

Step 2: Find the reference angle and the trig values. The reference angle is the acute angle the terminal side makes with the x-axis. Reference angle θ_ref = 5π/4 - π = π/4. Now we find the values for the reference angle:

  • cos(π/4) = √2 / 2
  • sin(π/4) = √2 / 2

Step 3: Apply the correct signs for Quadrant III. Because our original angle 5π/4 is in Quadrant III, both cosine and sine are negative.

  • cos(5π/4) = -cos(π/4) = -√2 / 2
  • sin(5π/4) = -sin(π/4) = -√2 / 2

This is the step where students most often make a mistake. They use the positive values from the reference angle and forget to adjust for the quadrant.

Step 4: Calculate the final coordinates.

  • x = r cos(θ) = 4 * (-√2 / 2) = -2√2
  • y = r sin(θ) = 4 * (-√2 / 2) = -2√2

Solution: The coordinates of the point are (-2√2, -2√2).

Visualizing the point (5, 5√3) for r=10 and θ=π/3 in Quadrant I.
Visualizing the point (-2√2, -2√2) for r=4 and θ=5π/4 in Quadrant III.

Try it yourself

Ready to try a couple on your own? Don't worry about getting it perfect on the first try. Focus on the process.

Problem 1: Find the exact coordinates of the point on a circle of radius 6 that is intersected by the terminal ray of the angle θ = 11π/6. Hint: What quadrant is 11π/6 in? What does that tell you about the signs of your x and y coordinates?

Problem 2: A point P is on a circle of radius 20 centered at the origin. If P is the intersection of the terminal ray of θ = 2π/3, what are its coordinates? Hint: What is the reference angle for 2π/3? Remember which trig function is positive in Quadrant II.