Geometry of Intersecting Lines
The three cases of the trichotomy have precise geometric descriptions. When two lines in cross at a single point, that point is the unique solution. You can find it algebraically by solving the system.
When the lines are parallel (same slope, different intercept), they never meet. The system is inconsistent and has no solution. This happens algebraically when elimination produces a row with .
When the two equations describe the same line, every point on that line is a solution. The system is under-determined: one equation is redundant. Algebraically, elimination produces a row .
The slope of a line is . Two lines are parallel exactly when they have the same slope, i.e., the same ratio .
Formal View
Why This Matters
Geometric reasoning reveals at a glance whether a system is solvable, saving computation.
- Computer vision: finding where two camera rays intersect requires solving a 2-variable linear system
- Game physics: collision detection solves line intersection problems in real time
- Surveying: triangulation finds a point by intersecting lines from known reference positions
Quiz
The system and has:
Common Mistakes
- Assuming parallel lines (same ratio of coefficients) means no solution — must also check if they are actually different lines.
- Thinking coincident lines (same equation, scaled) have a "less valid" solution than a unique intersection.