In short

Given two lines L_1 = 0 and L_2 = 0 that intersect at a point P, the equation L_1 + \lambda L_2 = 0 produces a different line through P for every value of the parameter \lambda. As \lambda varies over all real numbers, this expression sweeps out every line through P except L_2 itself. This one-parameter family is a powerful tool: instead of finding the intersection point first, you can write down the entire family and then impose one extra condition to pin down the unique member you want.

Suppose someone gives you two lines that cross at a point P, and asks you to find a third line that also passes through P and satisfies some additional condition — maybe it has a specific slope, or it passes through another given point, or it is perpendicular to some direction. The brute-force approach is: solve the two line equations simultaneously to find P, then write the equation of a line through P with the required property.

That works. But there is a far more elegant approach that skips the step of finding P entirely.

Consider the two lines x + y - 4 = 0 and 2x - y - 2 = 0. They meet somewhere — you could solve to find the intersection at (2, 2), but hold off. Instead, look at this expression:

(x + y - 4) + \lambda(2x - y - 2) = 0

Pick any number for \lambda. For \lambda = 0, you get the first line back. For \lambda = 1, you get 3x - 6 = 0, which is x = 2 — a vertical line. For \lambda = -1, you get -x + 2y - 2 = 0, which is x - 2y + 2 = 0. Every choice of \lambda gives a different line, and every single one of them passes through the intersection point (2, 2).

Why? Because the intersection point (2, 2) makes both x + y - 4 = 0 and 2x - y - 2 = 0 true. So it makes (x + y - 4) + \lambda(2x - y - 2) = 0 + \lambda \cdot 0 = 0 true, no matter what \lambda is. The intersection point is automatically on every member of the family.

This is the central idea, and the rest of the article unpacks it, makes it precise, and shows you how to use it.

The two original lines (black) meet at $P(2, 2)$. The coloured lines are members of the family $L_1 + \lambda L_2 = 0$ for different values of $\lambda$. Every member passes through $P$, sweeping out a fan of lines as $\lambda$ varies.

The formal statement

Family of lines through an intersection

Let L_1 \equiv a_1 x + b_1 y + c_1 = 0 and L_2 \equiv a_2 x + b_2 y + c_2 = 0 be two non-parallel lines meeting at a point P. The equation

L_1 + \lambda L_2 = 0

i.e.,

(a_1 + \lambda a_2)\,x + (b_1 + \lambda b_2)\,y + (c_1 + \lambda c_2) = 0

represents, for every real value of \lambda, a straight line passing through P. As \lambda ranges over all of \mathbb{R}, this expression produces every line through P except L_2 itself.

Why "except L_2"? To get L_2 from the expression L_1 + \lambda L_2 = 0, you would need L_1 to vanish entirely, which would require "\lambda = \infty." Since \lambda is a finite real number, L_2 is the one member of the family you cannot reach. (If you want L_2 as well, just swap the roles: write L_2 + \mu L_1 = 0 and set \mu = 0.)

Why is this useful? Because you never need to compute the intersection point. If a problem says "find the line through the intersection of 3x + 2y - 1 = 0 and x - y + 3 = 0 that is perpendicular to 4x + 5y = 7," you write the family, impose the perpendicularity condition, solve for \lambda, and you have the answer — without ever finding the intersection.

Building intuition: what the parameter does

Think of \lambda as a dial. When \lambda = 0, the family equation is just L_1 = 0 — you are sitting on the first line. As you turn \lambda up from 0, the line rotates around P, sweeping through different directions. Large positive \lambda makes the L_2 terms dominate, so the line tilts toward L_2's direction. Large negative \lambda tilts the line the opposite way.

The line L_2 is the one direction the dial can never quite reach — it would require \lambda to be infinite. But every other direction through P corresponds to exactly one finite value of \lambda.

A proof that the family covers all other lines through P. Take any line M through P, other than L_2. Suppose M has equation \alpha x + \beta y + \gamma = 0, and P = (x_0, y_0) satisfies M. Since P is on L_1 and L_2, we have L_1(P) = 0 and L_2(P) = 0. Now consider L_1 + \lambda L_2 evaluated at P: it equals 0 + \lambda \cdot 0 = 0 for all \lambda, confirming that every member passes through P. To show that M is actually in the family, we need to find a specific \lambda such that L_1 + \lambda L_2 is proportional to M. Since L_1 and L_2 are not parallel, their coefficient vectors (a_1, b_1, c_1) and (a_2, b_2, c_2) are linearly independent. Any line through P has its coefficient vector in the two-dimensional span of these two vectors (because passing through P is one linear constraint on three coefficients, leaving a two-dimensional family). So (\alpha, \beta, \gamma) must be a linear combination of (a_1, b_1, c_1) and (a_2, b_2, c_2). As long as M \neq L_2, the coefficient of (a_1, b_1, c_1) is nonzero, and dividing through gives the form L_1 + \lambda L_2 for a finite \lambda.

Here is a table showing how different values of \lambda produce different lines from the family (x + y - 4) + \lambda(2x - y - 2) = 0:

\lambda Equation Simplified Slope
0 x + y - 4 = 0 y = -x + 4 -1
1 3x - 6 = 0 x = 2 undefined (vertical)
-1 -x + 2y - 2 = 0 y = \frac{1}{2}x + 1 \frac{1}{2}
2 5x - y - 8 = 0 y = 5x - 8 5
-2 -3x + 3y = 0 y = x 1
\frac{1}{2} 2x + \frac{1}{2}y - 5 = 0 y = -4x + 10 -4

Every line in the table passes through (2, 2).

Worked examples

Example 1: Finding a line through an intersection with a given slope

Find the line through the intersection of 2x + 3y - 5 = 0 and 3x - 2y + 1 = 0 that has slope \frac{3}{2}.

Step 1. Write the family.

(2x + 3y - 5) + \lambda(3x - 2y + 1) = 0

Expanding: (2 + 3\lambda)x + (3 - 2\lambda)y + (-5 + \lambda) = 0.

Why: every member of this family passes through the intersection of the two lines, without needing to compute that intersection point.

Step 2. Express the slope in terms of \lambda.

The slope of Ax + By + C = 0 is -A/B. So the slope is

m = -\frac{2 + 3\lambda}{3 - 2\lambda}

Why: we need the slope to equal \frac{3}{2}, so we set up an equation in \lambda.

Step 3. Set m = \frac{3}{2} and solve.

-\frac{2 + 3\lambda}{3 - 2\lambda} = \frac{3}{2}
-2(2 + 3\lambda) = 3(3 - 2\lambda)
-4 - 6\lambda = 9 - 6\lambda
-4 = 9

Why: the \lambda terms cancelled. This means no value of \lambda works — there is no member of the family with slope \frac{3}{2}.

Step 4. Check whether L_2 itself has slope \frac{3}{2}.

The slope of 3x - 2y + 1 = 0 is -\frac{3}{-2} = \frac{3}{2}. It does.

Why: the family L_1 + \lambda L_2 = 0 includes every line through P except L_2. The slope \frac{3}{2} belongs to L_2 — the one line the parameter cannot reach.

Result: The required line is L_2 itself: 3x - 2y + 1 = 0.

The two lines intersect at $P \approx (0.54, 1.31)$. The line $L_2: 3x - 2y + 1 = 0$ (red) is the one with slope $\frac{3}{2}$ — it is also the one member the family $L_1 + \lambda L_2 = 0$ cannot produce. The intersection point $P$ is found by solving: $2x + 3y = 5$ and $3x - 2y = -1$, giving $x = 7/13, y = 17/13$.

This example illustrates an important edge case: when the answer is L_2 itself, the family equation fails gracefully — the algebra tells you, by producing a contradiction, that the answer is the missing member. Recognising this saves time in exams.

Example 2: A line through an intersection and a given point

Find the line through the intersection of x - 2y + 3 = 0 and 2x + y - 1 = 0 that also passes through the point (3, 2).

Step 1. Write the family.

(x - 2y + 3) + \lambda(2x + y - 1) = 0

Why: every member passes through the intersection of the two given lines.

Step 2. Substitute the point (3, 2) to find \lambda.

(3 - 4 + 3) + \lambda(6 + 2 - 1) = 0
2 + 7\lambda = 0
\lambda = -\frac{2}{7}

Why: the point (3, 2) must satisfy the family equation. This gives one equation in one unknown.

Step 3. Substitute \lambda = -\frac{2}{7} back into the family.

(x - 2y + 3) - \frac{2}{7}(2x + y - 1) = 0

Multiply through by 7:

7(x - 2y + 3) - 2(2x + y - 1) = 0
7x - 14y + 21 - 4x - 2y + 2 = 0
3x - 16y + 23 = 0

Why: multiplying by 7 clears the fraction. The resulting equation is the specific member of the family that passes through (3, 2).

Step 4. Verify.

Check (3, 2): 3(3) - 16(2) + 23 = 9 - 32 + 23 = 0. Correct.

The intersection of the two original lines: from x - 2y + 3 = 0 and 2x + y - 1 = 0, multiply the second by 2 and add: x - 2y + 3 + 4x + 2y - 2 = 0 gives 5x + 1 = 0, so x = -1/5. Then y = 1 - 2(-1/5) = 1 + 2/5 = 7/5. Check (-1/5, 7/5) in 3x - 16y + 23: -3/5 - 112/5 + 23 = -115/5 + 23 = -23 + 23 = 0. Correct.

Result: The required line is 3x - 16y + 23 = 0.

The two original lines (black) intersect at $P = (-1/5, 7/5)$. The red line $3x - 16y + 23 = 0$ passes through both $P$ and the given point $(3, 2)$. The family-of-lines method found this line without ever computing $P$ first.

Notice the economy of the method: you never solved a 2 \times 2 system. The intersection point emerged as a byproduct of the verification, not as a prerequisite.

Common confusions

The parametric view

The family L_1 + \lambda L_2 = 0 is a one-parameter family — one dial (\lambda) generates infinitely many lines. This idea shows up throughout mathematics. In the next chapter on circles, you will meet the family of circles through the intersection of two given circles, written S_1 + \lambda S_2 = 0, which works by exactly the same logic: the intersection points of S_1 and S_2 satisfy both equations, so they satisfy S_1 + \lambda S_2 = 0 for every \lambda.

The "parametric family" idea also connects to the concept of a pencil (an older term, still used in projective geometry). A pencil of lines is a one-parameter family of lines sharing a common point. The expression L_1 + \lambda L_2 = 0 is the algebraic way to write a pencil.

Applications

Finding a specific line through an intersection

This is the bread-and-butter application. Given two lines that intersect, you need the line through their intersection satisfying one extra condition (a slope, a point, a perpendicularity condition, a distance condition). Write the family, impose the condition, solve for \lambda. The conditions you can impose include:

Each of these imposes one equation on the one unknown \lambda, pinning down a unique member of the family (or, in the edge case, revealing that the answer is L_2).

Concurrence of three lines

Three lines are concurrent (all pass through one point) if and only if the third line can be written as a linear combination of the first two: L_3 = L_1 + \lambda L_2 for some \lambda. Equivalently, the determinant

\begin{vmatrix} a_1 & b_1 & c_1 \\ a_2 & b_2 & c_2 \\ a_3 & b_3 & c_3 \end{vmatrix} = 0

This determinant condition is a direct consequence of the family-of-lines theory. If L_3 is a member of the family L_1 + \lambda L_2 = 0, then the three coefficient triples are linearly dependent, forcing the determinant to zero.

Simplifying locus problems

When a locus involves the condition "passes through a fixed point," you can sometimes express the varying equation as L_1 + \lambda L_2 = 0. The fixed point is the intersection of L_1 and L_2, and identifying those two lines from the equation immediately gives you the fixed point without solving.

For instance, consider the line y = mx + \frac{1}{m} as m varies. Rewrite it as mx - y + \frac{1}{m} = 0, or m^2 x - my + 1 = 0. This is a quadratic in m: m^2 x - my + 1 = 0. For the line to pass through a fixed point for all m, you need x = 0 and 1 = 0 (from the constant term), which is impossible — or you need a more careful analysis. Treating the equation as m(mx - y) + 1 = 0, you see this is of the form L_1 + mL_2 = 0 where L_1: 1 = 0 (the "line at infinity") and L_2: mx - y = 0. The parametric approach reveals that the family does not have a common finite point for all m — different values of m give lines through different points.

A cleaner example: the line (2 + \lambda)x + (1 - \lambda)y = 3 + \lambda can be rewritten as (2x + y - 3) + \lambda(x - y + 1) = 0. For all \lambda, this line passes through the intersection of 2x + y - 3 = 0 and x - y + 1 = 0. Solving: adding the two equations gives 3x - 2 = 0, so x = 2/3, and y = 2/3 + 1 = 5/3. The fixed point is (2/3, 5/3).

Going deeper

If you understand how to write the family, solve for the parameter, and handle the edge case where the answer is L_2, you have the essentials. The rest of this section discusses the linear algebra underneath and a connection to projective geometry.

The linear algebra perspective

The set of all lines ax + by + c = 0 can be thought of as living in a space of triples (a, b, c). Two non-parallel lines give two linearly independent triples. The family L_1 + \lambda L_2 = 0 is the span of these two triples — the set of all linear combinations \alpha(a_1, b_1, c_1) + \beta(a_2, b_2, c_2), which is a two-dimensional subspace. (We only care about the direction of the triple, since 2x + 2y + 2 = 0 and x + y + 1 = 0 are the same line, so we really work in projective space, where triples that differ by a scalar factor are identified.)

In this view, \lambda = \beta/\alpha. The case \alpha = 0 gives L_2; every other ratio gives a distinct member of the family. This is why L_2 is "at \lambda = \infty" — it corresponds to \alpha = 0.

The dual picture

In projective geometry, points and lines are dual objects. A "pencil of lines" — a one-parameter family of lines through a common point — is dual to a "range of points" — the set of all points on a common line. The family L_1 + \lambda L_2 = 0 is the algebraic description of a pencil. The dual statement is: given two points P_1 and P_2, the parametric family P_1 + t(P_2 - P_1) traces out all points on the line P_1 P_2. The structures are the same; only the roles of "point" and "line" swap.

This duality is one of the most beautiful ideas in geometry, and the family-of-lines equation is your first encounter with it.

Connection to circle families

The same idea extends to conics. If S_1 = 0 and S_2 = 0 are two circles, the family S_1 + \lambda S_2 = 0 gives a one-parameter family of curves passing through the intersection points of the two circles. For most values of \lambda, the equation represents a circle. But for exactly one value — the \lambda that makes the x^2 and y^2 terms cancel — the equation drops to degree 1 and represents a straight line. That line is the radical axis of the two circles: the locus of points having equal power with respect to both circles.

The intersection points of S_1 and S_2 lie on every member of the family, just as the intersection point of two lines lies on every member of the line family. The logic is identical: if a point satisfies both S_1 = 0 and S_2 = 0, it satisfies S_1 + \lambda S_2 = 0 for every \lambda, because 0 + \lambda \cdot 0 = 0.

This is one of the most useful techniques in circle geometry, and you will meet it properly in the article on Circle - Standard Forms.

Where this leads next

The parametric family of lines connects naturally to several related topics: