How to Solve Two Linear Equations With Clear Determinant Checks
A classroom-friendly triage for unique solutions, no solution, and infinitely many solutions

Two linear equations in two unknowns are geometry in disguise: each equation is a line. Solving the system means asking how those lines meet. A transparent calculator should show the same triage you would write on paper—not a mysterious CAS transcript.
Put Both Equations in Standard Form
Rewrite each equation as a x + b y = c. If you start from 2x + y − 8 = 0, move the constant so c = 8. Messy forms are the most common source of 'wrong' solver results.
Read D, Dx, and Dy
Cramer’s rule builds D = a₁b₂ − a₂b₁, Dx = c₁b₂ − c₂b₁, and Dy = a₁c₂ − a₂c₁. When D ≠ 0, x = Dx/D and y = Dy/D. When D = 0, the lines are parallel in the coefficient sense: both Dx and Dy zero means the same line (infinite solutions); otherwise the equations contradict (no solution).
Try a 2×2 system
Enter coefficients and inspect the determinant steps:
Worked Unique Solution
For 2x + y = 8 and x − y = 1, D = −3, Dx = −9, and Dy = −6, so x = 3 and y = 2. Substitute back: 2(3) + 2 = 8 and 3 − 2 = 1. The check is part of the method, not optional polish.
Key Takeaways
- Standard form comes before coefficients
- Nonzero D means a unique intersection
- Zero D needs a second look at Dx and Dy
- Always substitute unique solutions back into both originals