☰ Course contents
Mathematics 🔍 Grade 10 Orbit Breach: Solving Line and Circle Systems
🔍 Grade 10 · Lesson 10 of 12

Orbit Breach: Solving Line and Circle Systems

A straight path can slice through a circular orbit at two points, graze it once, or miss it completely — algebra can tell you which before you even sketch it.

Grade 10Geometry / Algebra 2
Orbit Breach: Solving Line and Circle Systems — illustration
💡
The big idea: Substituting a line's equation into a circle's equation collapses the system into a single quadratic equation. Solving that quadratic finds the intersection points, and its discriminant reveals — without solving anything further — whether the line crosses the circle twice, touches it once, or misses it entirely.
🎯 By the end, you'll be able to
  • Substitute a linear equation into a circle equation to form a quadratic
  • Solve the resulting quadratic to find the intersection point(s)
  • Use the discriminant to determine the number of intersection points
  • Interpret the three cases geometrically: secant, tangent, and no intersection
📎 You should already know
  • Equation of a circle, (x−h)² + (y−k)² = r²
  • Solving quadratic equations and the discriminant

Finding the centre and radius

The circle formula (x−h)² + (y−k)² = r² is easy to read — centre (h, k), radius r — but circles don't always arrive in that tidy form. An equation like x² + y² − 6x + 4y − 12 = 0 is the same circle, just expanded and rearranged, and its centre and radius are hidden inside it. To recover them, you group the x-terms together, group the y-terms together, and complete the square on each group separately — the same technique from the completing-the-square lesson (grade9__square), just applied twice in one equation.

📝 Worked example: Find the centre and radius of the circle x² + y² − 6x + 4y − 12 = 0.
  1. Group the x-terms and y-terms, moving the constant to the other side: (x² − 6x) + (y² + 4y) = 12.
  2. Complete the square on the x-group: half of −6 is −3, squared is 9, so add 9 to both sides: (x² − 6x + 9) + (y² + 4y) = 12 + 9.
  3. Complete the square on the y-group: half of 4 is 2, squared is 4, so add 4 to both sides: (x² − 6x + 9) + (y² + 4y + 4) = 21 + 4.
  4. Rewrite each group as a perfect square: (x − 3)² + (y + 2)² = 25.
✓ The circle has centre <strong>(3, &minus;2)</strong> and radius <strong>5</strong> (since 25 = 5²).

Two equations, one intersection

A circle and a line are each described by their own equation. To find where — if anywhere — they cross, you solve both equations simultaneously. The standard trick: solve the line for y (or x), and substitute that expression directly into the circle's equation, replacing y everywhere it appears.

\[ (x-h)^2 + (y-k)^2 = r^2 \]
The circle's equation. Substituting y = mx + c from a line turns this into a single quadratic in x.
🔑 The discriminant tells you the count before you finish solving
After substitution you get a quadratic Ax² + Bx + C = 0. Its discriminant B² − 4AC tells you everything: positive means two intersection points (a secant line), zero means exactly one (a tangent line), and negative means the line misses the circle entirely.
🎮 Orbit Breach LIVE
Intersect a line with a circle: two points, one tangent, or none.

The method, step by step

Substitute the line into the circle, expand, and collect everything on one side to get Ax² + Bx + C = 0. Solve for x (factoring, or the quadratic formula), then plug each x-value back into the line's equation to get the matching y-value. Each (x, y) pair is one intersection point.

📝 Worked example: Find where the line y = x + 1 meets the circle x² + y² = 25.
  1. Substitute y = x + 1 into the circle: x² + (x + 1)² = 25.
  2. Expand: x² + x² + 2x + 1 = 25, so 2x² + 2x − 24 = 0, i.e. x² + x − 12 = 0.
  3. Factor: (x + 4)(x − 3) = 0, so x = −4 or x = 3.
  4. Back into the line: x = −4 gives y = −3; x = 3 gives y = 4.
✓ Two intersection points: <strong>(&minus;4, &minus;3)</strong> and <strong>(3, 4)</strong>. Both satisfy x² + y² = 16 + 9 = 25 and 9 + 16 = 25. &#10003;
📝 Worked example: Find where the line y = x + 4 meets the circle x² + y² = 8.
  1. Substitute: x² + (x + 4)² = 8.
  2. Expand: x² + x² + 8x + 16 = 8, so 2x² + 8x + 8 = 0, i.e. x² + 4x + 4 = 0.
  3. Factor: (x + 2)² = 0, a repeated root, so x = −2 only.
  4. Back into the line: y = −2 + 4 = 2.
✓ The discriminant is 4² &minus; 4(1)(4) = 0, so the line is <strong>tangent</strong>, touching the circle at the single point <strong>(&minus;2, 2)</strong>.
✨ When the line misses entirely
For circle x² + y² = 1 and line y = x + 5, substitution gives 2x² + 10x + 24 = 0, or x² + 5x + 12 = 0 after dividing by 2. Its discriminant is 5² − 4(1)(12) = 25 − 48 = −23 — negative, with no real solutions. The line sails past the circle without ever touching it.
⚠️ Don't stop at x — and remember what a double root means
Finding x is only half the job: substitute each x back into the line's equation to get its matching y. And a repeated (double) root is not “no solution” — it means exactly one intersection point, where the line is tangent to the circle.

Check your understanding

1. To find where a line intersects a circle algebraically, you should:
Substitution eliminates one variable, turning the system into a single quadratic you can solve directly.
2. For circle x²+y²=25 and line y=x+1, substitution simplifies to (x+4)(x−3)=0. How many points does the line intersect the circle at?
Two distinct roots, x = −4 and x = 3, each give a valid intersection point.
3. A line meets a circle so that the resulting quadratic has a discriminant of 0. What does this mean?
A zero discriminant means a repeated root — one x-value, one intersection point — which is exactly what happens when a line is tangent.
4. For circle x²+y²=8 and line y=x+4, substitution gives (x+2)²=0. What point does the line touch the circle at?
x = −2, and substituting into the line y = x + 4 gives y = 2, so the tangent point is (−2, 2).
5. A discriminant that comes out negative means:
A negative discriminant means the quadratic has no real roots, so the line and circle never meet.
6. Completing the square on x² + y² − 6x + 4y − 12 = 0 gives (x − 3)² + (y + 2)² = 25. What are the centre and radius?
In (x−h)² + (y−k)² = r², the signs inside the parentheses are flipped from h and k, so (x−3)² + (y+2)² = 25 gives centre (3, −2) and radius √25 = 5.
✅ Key takeaways
  • Substituting a line's equation into a circle's equation produces a single quadratic in one variable.
  • Solve that quadratic for x, then use the line's equation to find each matching y.
  • The discriminant of the resulting quadratic tells you the number of intersections without extra work.
  • Positive discriminant: two points (secant). Zero: one point (tangent). Negative: no intersection.
  • A repeated (double) root is not 'no solution' — it's exactly one tangent point.