Points of Intersection of a Line and a Circle

In coordinate geometry, understanding the interaction between lines and circles is fundamental. When a line and a circle are considered together, they can intersect at zero, one, or two distinct points. The nature of their intersection depends on the distance of the line from the center of the circle and the radius of the circle. We can determine these points of intersection algebraically by solving the equations of the line and the circle simultaneously.

Equation of a Circle

Before we discuss the intersection, let's recall the standard equation of a circle. A circle with center $(h, k)$ and radius $r$ has the equation: $(x - h)^2 + (y - k)^2 = r^2$ For a circle centered at the origin $(0, 0)$ with radius $r$, the equation simplifies to: $x^2 + y^2 = r^2$

Equation of a Line

A line can be represented in various forms. The most common forms used in conjunction with circle equations are the slope-intercept form ($y = mx + c$) or the general form ($Ax + By + C = 0$).

Finding Points of Intersection

To find the points where a line and a circle intersect, we need to solve their equations simultaneously. This typically involves substituting the expression for $y$ (or $x$) from the linear equation into the circular equation. This substitution will result in a quadratic equation in one variable (either $x$ or $y$). The roots of this quadratic equation will give us the coordinates of the intersection points.

Method 1: Substitution

Let the equation of the circle be $(x - h)^2 + (y - k)^2 = r^2$ and the equation of the line be $y = mx + c$.

  1. Substitute $y = mx + c$ into the circle's equation: $(x - h)^2 + ((mx + c) - k)^2 = r^2$
  2. Expand and rearrange the equation to form a quadratic equation in $x$ of the form $Ax^2 + Bx + C = 0$. $(x^2 - 2hx + h^2) + (m^2x^2 + (c - k)^2 + 2m(c - k)x) = r^2$ $x^2 - 2hx + h^2 + m^2x^2 + (c-k)^2 + 2m(c-k)x = r^2$ $(1 + m^2)x^2 + (2m(c - k) - 2h)x + (h^2 + (c - k)^2 - r^2) = 0$
  3. Solve this quadratic equation for $x$. Let the roots be $x_1$ and $x_2$.
  4. For each value of $x$, find the corresponding $y$ value using the line equation $y = mx + c$. If $x_1$ is a root, then $y_1 = mx_1 + c$. If $x_2$ is a root, then $y_2 = mx_2 + c$.
  5. The points of intersection are $(x_1, y_1)$ and $(x_2, y_2)$.

Interpreting the Roots of the Quadratic Equation

The nature of the roots of the quadratic equation $Ax^2 + Bx + C = 0$ determines the number of intersection points:

  • Two distinct real roots ($B^2 - 4AC > 0$): The line intersects the circle at two distinct points. The line is called a secant.
  • One real root (a repeated root, $B^2 - 4AC = 0$): The line touches the circle at exactly one point. The line is called a tangent to the circle.
  • No real roots ($B^2 - 4AC < 0$): The line does not intersect the circle.

Exam Tip: When solving for intersection points, the discriminant ($B^2 - 4AC$) of the resulting quadratic equation is crucial.
  • Discriminant > 0: Two intersection points (secant).
  • Discriminant = 0: One intersection point (tangent).
  • Discriminant < 0: No intersection points.

Example 1: Finding Intersection Points

Find the points of intersection of the line $y = x + 1$ and the circle $x^2 + y^2 = 5$.

Solution: Substitute $y = x + 1$ into the circle equation: $x^2 + (x + 1)^2 = 5$ $x^2 + (x^2 + 2x + 1) = 5$ $2x^2 + 2x + 1 = 5$ $2x^2 + 2x - 4 = 0$ Divide by 2: $x^2 + x - 2 = 0$ Factor the quadratic equation: $(x + 2)(x - 1) = 0$ The roots are $x = -2$ and $x = 1$. Now find the corresponding $y$ values using $y = x + 1$: If $x = -2$, then $y = -2 + 1 = -1$. So, one point is $(-2, -1)$. If $x = 1$, then $y = 1 + 1 = 2$. So, the other point is $(1, 2)$. The points of intersection are $(-2, -1)$ and $(1, 2)$.

Let's check the discriminant for $x^2 + x - 2 = 0$. Here $A=1, B=1, C=-2$. $B^2 - 4AC = (1)^2 - 4(1)(-2) = 1 + 8 = 9$. Since $9 > 0$, there are two distinct real roots, confirming two intersection points.

Example 2: Tangency

Show that the line $y = 2x + 5$ is tangent to the circle $x^2 + y^2 = 5$ and find the point of contact.

Solution: Substitute $y = 2x + 5$ into the circle equation: $x^2 + (2x + 5)^2 = 5$ $x^2 + (4x^2 + 20x + 25) = 5$ $5x^2 + 20x + 25 = 5$ $5x^2 + 20x + 20 = 0$ Divide by 5: $x^2 + 4x + 4 = 0$ This is a perfect square: $(x + 2)^2 = 0$ The equation has one real root (a repeated root): $x = -2$. Now find the corresponding $y$ value using $y = 2x + 5$: If $x = -2$, then $y = 2(-2) + 5 = -4 + 5 = 1$. The point of contact is $(-2, 1)$.

Let's check the discriminant for $x^2 + 4x + 4 = 0$. Here $A=1, B=4, C=4$. $B^2 - 4AC = (4)^2 - 4(1)(4) = 16 - 16 = 0$. Since the discriminant is 0, the line is tangent to the circle at exactly one point.

Example 3: No Intersection

Determine if the line $y = x + 5$ intersects the circle $x^2 + y^2 = 9$.

Solution: Substitute $y = x + 5$ into the circle equation: $x^2 + (x + 5)^2 = 9$ $x^2 + (x^2 + 10x + 25) = 9$ $2x^2 + 10x + 25 = 9$ $2x^2 + 10x + 16 = 0$ Divide by 2: $x^2 + 5x + 8 = 0$ Now, let's find the discriminant for $x^2 + 5x + 8 = 0$. Here $A=1, B=5, C=8$. $B^2 - 4AC = (5)^2 - 4(1)(8) = 25 - 32 = -7$. Since the discriminant is $-7 < 0$, there are no real roots for $x$. This means the line does not intersect the circle.

Method 2: Using Distance Formula (for Tangency Check)

An alternative way to check if a line is tangent to a circle, without necessarily finding the point of intersection first, is to compare the perpendicular distance from the center of the circle to the line with the radius of the circle.

Let the circle have center $(h, k)$ and radius $r$. Let the line be $Ax + By + C = 0$. The perpendicular distance ($d$) from the center $(h, k)$ to the line is given by the formula: $d = \frac{|Ah + Bk + C|}{\sqrt{A^2 + B^2}}$

Now, compare this distance $d$ with the radius $r$:

  • If $d < r$: The line intersects the circle at two distinct points (secant).
  • If $d = r$: The line is tangent to the circle (one intersection point).
  • If $d > r$: The line does not intersect the circle.

Example 4: Tangency Check using Distance Formula

Check if the line $3x + 4y - 10 = 0$ is tangent to the circle $x^2 + y^2 = 4$.

Solution: The circle $x^2 + y^2 = 4$ has its center at the origin $(h, k) = (0, 0)$ and its radius is $r = \sqrt{4} = 2$. The line is $3x + 4y - 10 = 0$. So, $A=3, B=4, C=-10$. Calculate the perpendicular distance ($d$) from the center $(0, 0)$ to the line: $d = \frac{|A(0) + B(0) + C|}{\sqrt{A^2 + B^2}} = \frac{|3(0) + 4(0) - 10|}{\sqrt{3^2 + 4^2}}$ $d = \frac{|-10|}{\sqrt{9 + 16}} = \frac{10}{\sqrt{25}} = \frac{10}{5} = 2$. The distance $d$ is 2, and the radius $r$ is also 2. Since $d = r$, the line is tangent to the circle.

Finding the Point of Contact using Distance Formula Method

While the distance formula is excellent for checking tangency, finding the exact point of contact requires further steps. Once tangency is confirmed ($d=r$), you can use the substitution method as described earlier. The quadratic equation will yield a single, repeated root, giving you the coordinates of the point of contact.

Alternatively, the point of contact lies on the line perpendicular to the given tangent line and passing through the center of the circle. For the line $Ax + By + C = 0$, the perpendicular line passing through $(h, k)$ has the equation $B(x - h) - A(y - k) = 0$. The point of contact is the intersection of the original line $Ax + By + C = 0$ and this perpendicular line $B(x - h) - A(y - k) = 0$.

Example 5: Finding Point of Contact (Perpendicular Line Method)

Find the point of contact for the tangent line $3x + 4y - 10 = 0$ to the circle $x^2 + y^2 = 4$. (From Example 4)

Solution: Center of the circle $(h, k) = (0, 0)$. Radius $r = 2$. The given tangent line is $3x + 4y - 10 = 0$. ($A=3, B=4, C=-10$) The equation of the line perpendicular to the tangent and passing through the center $(0, 0)$ is: $B(x - h) - A(y - k) = 0$ $4(x - 0) - 3(y - 0) = 0$ $4x - 3y = 0 \implies y = \frac{4}{3}x$. The point of contact is the intersection of $3x + 4y - 10 = 0$ and $y = \frac{4}{3}x$. Substitute $y = \frac{4}{3}x$ into the line equation: $3x + 4\left(\frac{4}{3}x\right) - 10 = 0$ $3x + \frac{16}{3}x - 10 = 0$ Multiply by 3 to clear the fraction: $9x + 16x - 30 = 0$ $25x = 30$ $x = \frac{30}{25} = \frac{6}{5}$. Now find $y$ using $y = \frac{4}{3}x$: $y = \frac{4}{3} \left(\frac{6}{5}\right) = \frac{24}{15} = \frac{8}{5}$. The point of contact is $\left(\frac{6}{5}, \frac{8}{5}\right)$.

We can verify this point lies on the circle: $\left(\frac{6}{5}\right)^2 + \left(\frac{8}{5}\right)^2 = \frac{36}{25} + \frac{64}{25} = \frac{100}{25} = 4$. This matches $r^2$.

Special Cases

Intersection with axes

To find the intersection of a circle with the x-axis, set $y=0$ in the circle's equation and solve for $x$. The points will be of the form $(x, 0)$. To find the intersection with the y-axis, set $x=0$ in the circle's equation and solve for $y$. The points will be of the form $(0, y)$.

Example 6: Intersection with Axes

Find the points where the circle $(x-2)^2 + (y-3)^2 = 25$ intersects the x and y axes.

Intersection with x-axis (set $y=0$): $(x-2)^2 + (0-3)^2 = 25$ $(x-2)^2 + (-3)^2 = 25$ $(x-2)^2 + 9 = 25$ $(x-2)^2 = 16$ $x-2 = \pm 4$ $x-2 = 4 \implies x = 6$ $x-2 = -4 \implies x = -2$ The intersection points with the x-axis are $(6, 0)$ and $(-2, 0)$.

Intersection with y-axis (set $x=0$): $(0-2)^2 + (y-3)^2 = 25$ $(-2)^2 + (y-3)^2 = 25$ $4 + (y-3)^2 = 25$ $(y-3)^2 = 21$ $y-3 = \pm \sqrt{21}$ $y = 3 \pm \sqrt{21}$ The intersection points with the y-axis are $(0, 3 + \sqrt{21})$ and $(0, 3 - \sqrt{21})$.

Summary of Concepts

The intersection of a line and a circle is found by solving their equations simultaneously. This leads to a quadratic equation. The nature of the roots of this quadratic equation (determined by the discriminant) tells us whether the line is a secant (two points), a tangent (one point), or does not intersect the circle (no points). For checking tangency, the distance from the circle's center to the line can be compared with the radius. If the distance equals the radius, the line is tangent. The point of contact can be found either by solving the simultaneous equations yielding a repeated root or by finding the intersection of the tangent line and the line perpendicular to it passing through the circle's center.