Systems Of Equations

Solve two linear equations with two unknowns using Cramer's rule. Get x, y, and determinant instantly. Free online 2x2 system of equations solver with step-by-step detection.

Solve system

Equation 1: a₁x + b₁y = c₁

Equation 2: a₂x + b₂y = c₂

About This Calculator

The Systems of Equations calculator solves two linear equations with two unknowns (x and y) using Cramer's rule. Given equations in the form a1x + b1y = c1 and a2x + b2y = c2, the calculator computes the determinant Delta = a1b2 - a2b1 and uses it to find x and y.

This tool is essential for algebra students learning systems of equations, teachers verifying solutions, and professionals solving everyday linear problems. The determinant value is shown alongside the solution -- a non-zero determinant confirms a unique solution, while a zero determinant indicates either no solution (parallel lines) or infinitely many solutions (coincident lines).

Example: 2x + 3y = 7 and 4x + 5y = 18. Determinant = 2x5 - 4x3 = -2. x = (7x5 - 18x3)/(-2) = -19/(-2) = 9.5. y = (2x18 - 4x7)/(-2) = 8/(-2) = -4. Solution: x = 9.5, y = -4.

Frequently Asked Questions

How does Cramer's rule work for solving systems of equations?

Cramer's rule solves a 2x2 system by computing determinants. For equations a1x + b1y = c1 and a2x + b2y = c2, the determinant D = a1b2 - a2b1. Then x = (c1b2 - c2b1)/D and y = (a1c2 - a2c1)/D. This method only works when D ≠ 0.

What does it mean when the determinant is zero?

A zero determinant means the two equations are linearly dependent -- their graphs are either parallel lines (no solution) or the same line (infinitely many solutions). In either case, Cramer's rule cannot give a unique solution.

Can this calculator solve systems with more than two equations?

No, this calculator handles 2x2 systems only. For larger systems, you would need Gaussian elimination or matrix inversion methods.

What types of coefficients are supported?

All real number coefficients are supported including integers, fractions, decimals, and negative numbers. Results are displayed with up to 4 decimal places as needed.

Is this systems of equations solver free?

Yes, all calculators on Calculy are completely free to use with no registration or downloads required.

Can I share my system of equations and solution?

Yes, use the Share button to copy a URL containing your current coefficients. Anyone opening that link will see the same equations and solution automatically.

What are some real-world applications of solving systems of equations?

Systems of linear equations appear in economics (supply and demand equilibrium), physics (circuit analysis with Kirchhoff's laws), engineering (force balance in trusses), computer graphics (line intersection detection), and chemistry (balancing chemical equations). Understanding how to solve 2x2 systems builds the foundation for larger linear algebra problems.

How can I verify the solution to my system of equations?

Substitute the computed x and y values back into both original equations. For example, if your solution is x = 9.5 and y = -4 for the system 2x + 3y = 7 and 4x + 5y = 18, then 2(9.5) + 3(-4) = 19 - 12 = 7 and 4(9.5) + 5(-4) = 38 - 20 = 18. Both equations are satisfied, confirming the solution is correct.