Systems of Equations
A system of equations consists of two or more equations that share the same variables and must be satisfied simultaneously. The solution represents the point where all equations intersect, typically expressed as an ordered pair (x, y) for two-variable systems. Systems appear throughout algebra, with CCSS 8.EE introducing basic solving methods and CCSS HSA.REI extending to more complex applications.
Why it matters
Systems of equations model countless real-world scenarios where multiple constraints interact simultaneously. Business owners use them to find break-even points — if production costs follow one equation and revenue follows another, the intersection shows profitability. Engineers apply systems when designing bridges, where stress equations and weight equations must balance. In economics, supply and demand curves intersect at equilibrium prices. A movie theater charging $12 for adults and $8 for children, selling 200 tickets for $2,080 total, creates a system revealing 120 adult tickets and 80 child tickets were sold. These applications extend into physics (velocity and acceleration), chemistry (reaction rates), and advanced mathematics including linear algebra and calculus optimization problems.
How to solve systems of equations
Systems of Equations
- Write both equations.
- Use substitution or elimination to solve for one variable.
- Substitute back to find the other.
- Verify in both equations.
Example: x + y = 5, x − y = 1 → x = 3, y = 2.
Worked examples
Solve the system: x + y = 5 x = 3
Answer: x = 3, y = 2
- Label the equations → (1) x + y = 5 (2) x = 3 — Number each equation so we can refer to them.
- Solve equation (1) for y → y = 5 − 1x — Isolate y in the simpler equation to use substitution.
- Substitute into equation (2) → Substitute y into (2) and solve for x — Replace y in equation (2) with the expression from equation (1), then solve for x.
- Find x → x = 3 — Solving gives x = 3.
- Substitute x back to find y → In (1): 1·3 + 1·y = 5 → 3 + 1·y = 5 → 1·y = 2 → y = 2 — Plug x = 3 into equation (1) and solve for y.
- Write the solution → x = 3, y = 2 — The intersection point of the two lines.
- Verify in both equations → (1) 1·3 + 1·2 = 5 = 5 ✓ (2) 1·3 + 0·2 = 3 = 3 ✓ — Substitute the solution into both original equations to confirm.
Tickets: An adult ticket and a child ticket together cost $7.00. 1 adult ticket(s) minus 1 child ticket cost $−3.00. Find each ticket price.
Answer: adult = 2, child = 5
- Define variables → Let x = adult price, y = child price x + y = 7 1x − y = -3 — Translate ticket prices into a system of equations.
- Label the equations → (1) x + y = 7 (2) x − 1y = -3 — Number each equation so we can refer to them.
- Solve equation (1) for y → y = 7 − 1x — Isolate y in the simpler equation to use substitution.
- Substitute into equation (2) → Substitute y into (2) and solve for x — Replace y in equation (2) with the expression from equation (1), then solve for x.
- Find x → x = 2 — Solving gives x = 2.
- Substitute x back to find y → In (1): 1·2 + 1·y = 7 → 2 + 1·y = 7 → 1·y = 5 → y = 5 — Plug x = 2 into equation (1) and solve for y.
- Write the solution → x = 2, y = 5 — The intersection point of the two lines.
- Verify in both equations → (1) 1·2 + 1·5 = 7 = 7 ✓ (2) 1·2 + -1·5 = -3 = -3 ✓ — Substitute the solution into both original equations to confirm.
Solve the system: 2x + y = 4 x − 2y = -8
Answer: x = 0, y = 4
- Label the equations → (1) 2x + y = 4 (2) x − 2y = -8 — Number each equation so we can refer to them.
- Solve equation (1) for y → y = 4 − 2x — Isolate y in the simpler equation to use substitution.
- Substitute into equation (2) → Substitute y into (2) and solve for x — Replace y in equation (2) with the expression from equation (1), then solve for x.
- Find x → x = 0 — Solving gives x = 0.
- Substitute x back to find y → In (1): 2·0 + 1·y = 4 → 0 + 1·y = 4 → 1·y = 4 → y = 4 — Plug x = 0 into equation (1) and solve for y.
- Write the solution → x = 0, y = 4 — The intersection point of the two lines.
- Verify in both equations → (1) 2·0 + 1·4 = 4 = 4 ✓ (2) 1·0 + -2·4 = -8 = -8 ✓ — Substitute the solution into both original equations to confirm.
Common mistakes
- When solving x + y = 7 and x - y = 3 by substitution, writing y = 7 - x in the second equation as x - (7 - x) = 3, then incorrectly simplifying to x - 7 - x = 3, giving -7 = 3 instead of the correct x - 7 + x = 3, yielding x = 5.
- In elimination method with 2x + y = 8 and x + y = 5, subtracting the second equation from the first but keeping the same signs: 2x + y - x + y = 8 - 5, resulting in x + 2y = 3 instead of correctly getting x = 3.
- Forgetting to substitute back after finding one variable, solving 3x + 2y = 12 and x = 2 to get x = 2, then stating the solution as just x = 2 instead of the complete solution (2, 3).