Intersection of Two Lines Calculator

Find the intersection point of two lines. Enter equations in slope-intercept or standard form with step-by-step solutions.

Select Input Format & Enter Equations

Line 1: y = m1x + b1

Line 2: y = m2x + b2

Result

Intersection Point
(1, 3)
unique intersection
x-coordinate1
y-coordinate3
System TypeIndependent (one solution)

Step-by-Step Solution

2x + 1 = -x + 4 => 3x = 3 => x = 1, y = 3

How to Find the Intersection of Two Lines

The intersection of two lines is the point where both lines cross each other on the coordinate plane. To find this point, you solve the system of two linear equations simultaneously. If the lines are not parallel, they will intersect at exactly one point.

Methods for Finding Intersections

Substitution Method

Solve one equation for a variable, then substitute into the other equation to find the solution.

y = mx + b => substitute into second equation

Elimination Method

Add or subtract equations to eliminate one variable, then solve for the remaining variable.

a1x + b1y = c1, a2x + b2y = c2

Cramer's Rule

Use determinants to solve the 2x2 system directly. x = Dx/D, y = Dy/D where D is the coefficient determinant.

D = a1*b2 - a2*b1

Graphical Method

Plot both lines on a coordinate plane and visually identify where they cross.

Plot y = m1x + b1 and y = m2x + b2

Special Cases

Parallel Lines

Two lines are parallel when they have the same slope but different y-intercepts (m1 = m2 and b1 ≠ b2). Parallel lines never intersect, so the system has no solution. In standard form, this occurs when a1/a2 = b1/b2 ≠ c1/c2.

Coincident Lines

Two lines are coincident (identical) when they have the same slope and the same y-intercept. Every point on one line is also on the other, giving infinitely many solutions. In standard form: a1/a2 = b1/b2 = c1/c2.

Perpendicular Lines

Two lines are perpendicular when their slopes are negative reciprocals: m1 × m2 = -1. Perpendicular lines always intersect at a 90-degree angle.

Practical Applications

  • Finding break-even points in economics where cost and revenue lines intersect.
  • Determining collision points in physics and computer graphics.
  • Solving optimization problems in linear programming.
  • GPS and navigation systems use line intersection to determine positions.
  • Engineering and architecture for structural analysis and design.

Tips for Solving Line Intersections

  • Always check if the lines are parallel first by comparing slopes.
  • Verify your answer by substituting back into both original equations.
  • Use Cramer's Rule for quick computation with standard form equations.
  • For two-point form, first convert to slope-intercept or standard form.