MATMathematics
Linear System Solver
Solve a system of two linear equations (ax + by = c, dx + ey = f) using Cramer's rule. Find x and y, or detect parallel/coincident lines.
Try an example
How It Works
Formula
Where
- Coefficient of x in equation 1
- Coefficient of y in equation 1
- Constant term of equation 1
- Coefficient of x in equation 2
- Coefficient of y in equation 2
- Constant term of equation 2
Enter coefficients for two equations: a1x + b1y = c1 and a2x + b2y = c2. The solver computes the determinant (a1b2 - a2b1). If non-zero, it applies Cramer's rule. If zero, it checks whether the system is inconsistent or dependent.