# System of Linear & Nonlinear Equations Solver

Solve a system of two linear equations via Cramer’s Rule, or a line-and-parabola nonlinear system via substitution, with clear steps and an intersection graph.

---

- **Canonical URL:** https://dothecalculation.com/calculators/system-of-equations-calculator
- **Category:** Math calculators
- **Publisher:** Do The Calculation (https://dothecalculation.com)
- **Cost:** Free, no account or sign-up required
- **Privacy:** Runs entirely in the browser; inputs are never sent to a server
- **Methodology:** https://dothecalculation.com/methodology

---

## Equations System Solver

Solve systems of two equations in two variables. Supports both linear systems and a line-and-parabola nonlinear system.

- Linear systems solved via Cramer's Rule
- Nonlinear line-and-parabola intersections via substitution
- Both equations plotted on a coordinate grid

## Solving Systems of Simultaneous Equations

In algebra, a system of equations consists of two or more equations sharing multiple variables. Solving the system means finding the values of the variables that satisfy all equations simultaneously. Geometrically, the solution corresponds to the points where the graphs of the equations intersect on a coordinate plane. If the equations represent straight lines, the system is linear and has either one unique intersection point, no intersection points (parallel lines), or infinitely many intersection points (identical lines).

Nonlinear systems involve at least one equation that is not a straight line, such as a parabola. These can have multiple intersection points — a line intersecting a parabola at up to two points, for example. The classic algebraic methods for solving systems by hand are substitution, elimination, and graphing.

This calculator solves two specific system types: a linear 2×2 system (two lines) via Cramer's Rule, and a nonlinear system (a line and a parabola) via algebraic substitution. Enter the coefficients, and it calculates the intersection coordinates and plots both curves on a coordinate grid.

## Mathematical Formulation: Linear Systems via Cramer's Rule

A system of two linear equations in two variables \(x\) and \(y\) is written as:

\[a_1 x + b_1 y = c_1\]

\[a_2 x + b_2 y = c_2\]

Using Cramer's Rule, the solution is calculated using determinants:

\[x = \frac{D_x}{D} = \frac{c_1 b_2 - c_2 b_1}{a_1 b_2 - a_2 b_1}, \quad y = \frac{D_y}{D} = \frac{a_1 c_2 - a_2 c_1}{a_1 b_2 - a_2 b_1}\]

Where \(D = a_1 b_2 - a_2 b_1\) is the determinant of the coefficient matrix. If \(D = 0\) and \(D_x \neq 0\) (or \(D_y \neq 0\)), the system has no solution — the lines are parallel. If \(D = 0\) and both \(D_x = 0\) and \(D_y = 0\), the lines are identical and there are infinitely many solutions.

## Mathematical Formulation: Line-Parabola Nonlinear Systems

For a line \(y = mx + d\) intersecting a parabola \(y = ax^2 + bx + c\), the calculator substitutes the linear equation into the quadratic to form a single quadratic equation: \[ax^2 + (b-m)x + (c-d) = 0\]

Solving this with the quadratic formula gives the x-coordinates of the intersection points: zero real solutions if the discriminant is negative (line misses the parabola), one solution if it's zero (the line is tangent), or two solutions if it's positive (the line crosses the parabola twice).

## Worked Case Study: Linear-Quadratic Intersection (the Calculator's Default)

Find the intersection points of the line \(y = x + 1\) and the parabola \(y = x^2 - x - 2\).

Set the equations equal to solve for \(x\) by substitution:

\[x^2 - x - 2 = x + 1\]

Subtract \(x + 1\) from both sides to form a standard quadratic equation:

\[x^2 - 2x - 3 = 0\]

Factor the quadratic equation:

\[(x - 3)(x + 1) = 0 \implies x_1 = 3,\; x_2 = -1\]

Substitute these x-values back into the linear equation \(y = x + 1\):

1. For \(x_1 = 3\): \(y_1 = 3 + 1 = 4 \implies (3, 4)\)

2. For \(x_2 = -1\): \(y_2 = -1 + 1 = 0 \implies (-1, 0)\)

The system has two solutions: \((3, 4)\) and \((-1, 0)\) — matching what the calculator returns for its default inputs.

## How to Use This Calculator

Choose Linear (two lines) or Nonlinear (a line and a parabola). For linear systems, enter each equation's coefficients in \(ax + by = c\) form. For nonlinear systems, enter the line's slope/intercept and the parabola's coefficients. The calculator solves for the intersection point(s) and plots both curves.

## Related Calculators

For 3×3 or larger linear systems, use the [matrix solver](/calculators/matrix-solver). To solve just the quadratic equation on its own, see the [quadratic solver](/calculators/quadratic-solver).

## Classifying Solutions: Consistent, Inconsistent, and Dependent Systems

Linear systems are classified based on the number of solutions they possess. A consistent system has at least one solution — if it has exactly one, it's independent; if it has infinitely many (the equations represent the same line), it's dependent. An inconsistent system has no solutions because the lines are parallel and never intersect.

## Frequently asked questions

### What is a system of equations?

A set of two or more equations containing the same variables, solved simultaneously to find values that satisfy all of them.

### What methods does this calculator use to solve a system?

Cramer's Rule (determinants) for a linear 2×2 system, and algebraic substitution into a quadratic for a line-and-parabola nonlinear system. It doesn't use elimination or graphical estimation to find the solution — the graph shown is a visualization of the algebraically computed answer.

### What is an inconsistent system?

A system with no solution, which occurs when the equations represent parallel lines that never intersect.

### What is a dependent system?

A system with infinitely many solutions because the equations represent the exact same line, meaning every point on the line is a solution.

### How many solutions can a linear system have?

A system of linear equations in two variables can have zero solutions (parallel lines), one unique solution (intersecting lines), or infinitely many solutions (coincident lines).

### How many solutions can this calculator's nonlinear system have?

Zero, one, or two — a line can miss a parabola entirely, be tangent to it at one point, or cross it at two points.

### What is Cramer's Rule?

An algebraic method that uses determinants to solve systems of linear equations. It's what this calculator uses for the linear (two-line) mode.

### What is the determinant of a system?

The determinant D is calculated from the coefficients of the variables. If D = 0, the system does not have a unique solution.

### Can this calculator solve systems with two quadratics, or a circle and a line?

No — the nonlinear mode is specifically a line (y = mx + d) intersecting a parabola (y = ax² + bx + c). Other curve combinations aren't supported.

### What is the graphical representation of a system's solution?

The coordinates (x, y) of the point or points where the graphs of the equations intersect, shown as orange dots on the plotted curves.

### How do you check if a solution is correct?

Substitute the calculated values of the variables back into all the original equations. The values must satisfy every equation in the system.

### What is a homogeneous system?

A linear system in which all the constant terms are zero (c₁ = 0, c₂ = 0). It always has at least the trivial solution (x = 0, y = 0).

## Related concepts

- **Cramer's Rule** — An explicit formula for the solution of a system of linear equations using determinants.
- **Quadratic Formula** — A formula used to solve quadratic equations arising from linear-quadratic substitutions.
- **Discriminant** — The expression that determines whether a line and parabola intersect at zero, one, or two points.

## Related guides

- [Ratio and Proportion Guide: Simplify, Solve, Split Totals](https://dothecalculation.com/blog/math/ratio-and-proportion) — Learn how to simplify ratios, solve proportions, and split totals with worked examples tied to the live DTC ratio calculator.

## Related calculators

- [Cross Multiplication Calculator](https://dothecalculation.com/calculators/cross-multiplication-calculator) — Use our free cross multiplication calculator to solve equations with fractions. Shows step-by-step work for proportions and fraction comparisons.
- [Linear Programming Solver (Graphical Method)](https://dothecalculation.com/calculators/linear-programming-calculator) — Optimize a 2-variable objective function subject to linear inequality constraints using the graphical corner-point method with this free solver.
- [Arithmetic & Geometric Sequence Solver](https://dothecalculation.com/calculators/number-sequence-calculator) — Generate terms, calculate general formulas, and sum series for arithmetic and geometric progressions with this free solver.
- [Ratio and Proportion Calculator](https://dothecalculation.com/calculators/ratio-proportion-calculator) — Simplify ratios, solve proportions, and divide quantities by ratio instantly with this free step-by-step ratio calculator.
- [Derivative & Limit Solver](https://dothecalculation.com/calculators/derivative-solver) — Compute first and second derivatives of algebraic functions, find limits, and solve tangent line equations with clear steps.
- [Modular Arithmetic & Congruence Solver](https://dothecalculation.com/calculators/modular-arithmetic-calculator) — Perform modular addition, multiplication, and exponentiation, and solve linear modular congruence equations with clear steps.

---

_This mathematical solver is designed for academic, engineering, and educational analysis. Rounding errors, numerical tolerances, or algorithm constraints might apply near poles, boundary conditions, or complex coordinate spaces. Always verify critical computations independently._

---

_Source: [Do The Calculation](https://dothecalculation.com/calculators/system-of-equations-calculator). Quote freely with attribution and a link to this page._
