Intersection of Two Lines Calculator
Find where two lines y = m₁x + b₁ and y = m₂x + b₂ cross.
Two non-parallel lines meet at exactly one point — this finds it.
The math behind it
Set m₁x + b₁ = m₂x + b₂ and solve: x = (b₂ − b₁) ÷ (m₁ − m₂), then substitute back for y.
Worked example
y = 2x + 1 and y = −x + 7 → x = 2, y = 5.
FAQ
What if the slopes are equal?
The lines are parallel and never intersect (or are the same line).