Two non-parallel lines meet at exactly one point. Three or more lines that all pass through a common point are concurrent. A clever way to describe all lines through a given point is the family of lines: any line through the intersection of two given lines can be written as L1+kL2=0 for some real k.
Intersection of two lines
To find the intersection of A1x+B1y+C1=0 and A2x+B2y+C2=0, solve the linear system. Cramer's rule gives:
x=A1B2−A2B1B1C2−B2C1,y=A1B2−A2B1C1A2−C2A1.
The denominator A1B2−A2B1 is zero iff the lines are parallel (no unique intersection).
Family of lines through an intersection
Theorem. If L1=0 and L2=0 are two non-parallel lines intersecting at P, then every line through P has the form
L1+kL2=0
for some scalar k (and the limit k→∞ gives L2=0).
The reason: both L1 and L2 vanish at P, so the combination vanishes too , meaning P lies on L1+kL2=0. Conversely, any line through P can be written this way by suitably choosing k.
Strategy. Given that a line passes through the intersection of two known lines and satisfies one more condition (slope, distance, perpendicularity, …), use the family form L1+kL2=0, impose the extra condition, solve for k.
Concurrency
Three lines L1=0,L2=0,L3=0 are concurrent iff
detA1A2A3B1B2B3C1C2C3=0.
Equivalently, L3 can be written as a linear combination αL1+βL2.
Worked examples
Example 1. Find the intersection of 2x+3y−7=0 and x−y+1=0.
From the second: x=y−1. Substitute: 2(y−1)+3y−7=0⇒5y=9⇒y=9/5,x=4/5. Intersection: (4/5,9/5).
Example 2. Find the line through the intersection of x+y−3=0 and 2x−y+1=0, passing through (1,4).
Family: (x+y−3)+k(2x−y+1)=0. Plug in (1,4): (1+4−3)+k(2−4+1)=0⇒2+k(−1)=0⇒k=2.
Line: x+y−3+2(2x−y+1)=0⇒5x−y−1=0.
Example 3. Show that 3x+4y−10=0, x−y−1=0, and 5x+6y−16=0 are concurrent.
Solve the first two: 3x+4y=10 and x−y=1⇒x=y+1⇒3(y+1)+4y=10⇒7y=7⇒y=1,x=2. Check the third: 5⋅2+6⋅1−16=0 ✓.
Example 4. Find the line through the intersection of x+2y−5=0 and 3x+y−10=0, perpendicular to 4x+3y−7=0.
Intersection: solve to get x=3,y=1. Required slope: 4/3 (negative reciprocal of −4/3).
Equation: y−1=(4/3)(x−3)⇒4x−3y−9=0.
Example 5. For what value of k are the lines kx+2y+3=0, x+ky+6=0, and 3x+2y+5=0 concurrent?
Find the line through (2,3) and the intersection of x+y−4=0 and 2x−y−1=0.
Find the line through the intersection of x+2y−1=0 and x−y+4=0 perpendicular to x+y−1=0.
Show that (1,0), (0,1), and the intersection of x+y−2=0 and 2x−y+1=0 are collinear.
Are the lines x−y−1=0, 2x−y−3=0, 3x−y−5=0 concurrent? Find the common point.
Find k if the lines x+y−1=0, 2x+3y−5=0, x+ky−4=0 are concurrent.
Find the line through the intersection of 3x+y−5=0 and 5x−y−7=0 which makes equal intercepts on the axes.
Find the equation of the line through (2,−1) and through the intersection of x−2y+1=0 and x+3y−1=0.
Find the foot of the perpendicular from (1,2) to the line 4x+3y−25=0.
Find the image of (2,3) in the line y=x.
Three sides of a triangle have equations L1,L2,L3. Show that the medians are concurrent (without using calculus). (Hint: use the family of lines.)
Find the line through the intersection of x+2y−3=0 and 3x+4y−7=0 at distance 1 from origin.
Pitfalls / Tricks
For the family form, k can be any real; including k→∞ gives L2=0.
Three lines may be parallel without being concurrent (parallel ≠ concurrent). Concurrency means they meet at a single point.
When solving the linear system, check whether the lines are parallel first.
Insight. The family of lines through a point is a powerful technique: it reduces "find the line through point P satisfying condition X" to a single-variable equation in k.