ACT MATH • PREPARING FOR HIGHER MATH

Systems of Equations

Master the methods for finding where two or more equations share a common solution.

Historical Context & Motivation

Long before modern algebra existed, ancient civilizations faced practical problems that required finding two unknowns at the same time. Imagine a merchant who knows the total cost of buying wheat and barley, and also knows a different combination of those same goods at a different price. Finding the price per unit of each grain requires solving what we now call a system of equations. This idea — that multiple constraints can pin down multiple unknowns — is one of the most powerful concepts in all of mathematics, and it appears repeatedly on the ACT.

~200 BCE
Chinese "Nine Chapters"
The ancient Chinese text Jiuzhang Suanshu presented methods for solving systems of linear equations using a technique remarkably similar to modern Gaussian elimination, organized on counting boards.
~250 CE
Diophantus of Alexandria
The Greek mathematician Diophantus explored systems involving integer solutions in his work Arithmetica, laying groundwork for algebraic notation and the study of equations with multiple unknowns.
1637
Descartes & Coordinate Geometry
René Descartes published La Géométrie, unifying algebra and geometry. His coordinate plane made it possible to visualize systems of equations as intersecting lines and curves.
1750s
Cramer's Rule
Gabriel Cramer formalized a method using determinants to solve systems of linear equations, providing a systematic algebraic approach that extended to any number of variables.
Today
ACT & Modern Applications
Systems of equations are tested on the ACT because they appear everywhere — from engineering and economics to computer science. The ACT typically tests two-variable linear systems using substitution and elimination.

The central question that systems of equations address is straightforward: when you have more than one unknown and more than one relationship connecting them, how do you find the values that satisfy all the relationships simultaneously? The ACT will test your ability to answer this question efficiently and accurately.

Core Principles & Definitions

A system of equations is a set of two or more equations that share the same variables. A solution to the system is any ordered pair (or set of values) that makes every equation in the system true at the same time. On the ACT, you will almost always encounter systems of two linear equations with two variables, though occasionally a system may involve a linear and a quadratic equation.

1

Consistent & Independent

The system has exactly one solution. The two lines intersect at a single point. This is the most common type you will see on the ACT.
2

Consistent & Dependent

The system has infinitely many solutions. The two equations describe the same line. Every point on the line satisfies both equations.
3

Inconsistent

The system has no solution. The two lines are parallel and never intersect. No ordered pair can satisfy both equations.
4

Substitution Method

Solve one equation for one variable, then substitute that expression into the other equation to reduce the system to a single equation with one unknown.
5

Elimination Method

Add or subtract equations (sometimes after multiplying) so that one variable cancels out, leaving a single equation in one unknown.
KEY TAKEAWAY
KEY TAKEAWAY

Visual Explanation — Graphing Systems

The most intuitive way to understand a system of equations is to graph each equation on the same coordinate plane. Each linear equation produces a straight line, and the solution to the system is the point where those lines cross. The diagram below illustrates the three possible outcomes for a two-equation linear system.

Three possible outcomes for a system of two linear equations: the lines intersect at one point (one solution), overlap completely (infinitely many solutions), or run parallel (no solution).

In the left panel, the cyan line L₁ and the violet line L₂ cross at a single pink point. That point's coordinates give the unique solution (x, y). In the center panel, L₁ and L₂ are the same line, so every point on the line is a solution. In the right panel, the lines have the same slope but different y-intercepts, so they are parallel and never meet. Recognizing which case you are dealing with — before you even start solving — can save valuable time on the ACT.

Mathematical Framework

On the ACT, you need to be comfortable with two primary algebraic methods for solving systems: substitution and elimination. Each has situations where it shines, and knowing which to choose can save you critical seconds.

The Substitution Method

GENERAL SYSTEM
a₁x + b₁y = c₁ and a₂x + b₂y = c₂
a₁, b₁, c₁ are the coefficients and constant of the first equation; a₂, b₂, c₂ are those of the second. The variables x and y are the unknowns.

Substitution works best when one equation is already solved for a variable, or when a variable has a coefficient of 1 or −1. You isolate that variable in one equation, then replace it in the other equation. This reduces your system from two equations with two unknowns to a single equation with one unknown.

The Elimination Method

ELIMINATION SETUP
Multiply Eq. 1 by m and Eq. 2 by n so that one variable's coefficients are opposites, then add the equations.
Choose multipliers m and n such that the coefficients of one variable sum to zero. This "eliminates" that variable.

Elimination is often faster when both equations are in standard form (Ax + By = C) and no variable has a coefficient of 1. Multiply one or both equations by constants so that one variable's coefficients become additive inverses, then add the equations to eliminate that variable.

Recognizing Special Cases

SLOPE COMPARISON
If a₁/a₂ = b₁/b₂ ≠ c₁/c₂ → no solution (parallel lines); If a₁/a₂ = b₁/b₂ = c₁/c₂ → infinitely many solutions (same line)
This ratio test quickly tells you if the system has a unique solution, no solution, or infinitely many. If the ratios of the coefficients are not equal, the system has exactly one solution.
ACT TIP

Comparing Solution Methods

Choosing the right method is part strategy. The diagram below provides a decision flowchart to help you determine the fastest approach for any given ACT problem. After the diagram, a comparison table summarizes when each method is most efficient.

Decision flowchart for choosing between substitution and elimination. After solving for one variable, always back-substitute to find the other.
Comparison of the two primary methods for solving systems on the ACT
CriterionSubstitutionElimination
Best when...One variable is already isolated or has a coefficient of 1 or −1Both equations are in standard form (Ax + By = C)
Key actionReplace a variable with an expressionAdd or subtract equations to cancel a variable
Common errorForgetting to distribute when substitutingForgetting to multiply every term in the equation
Speed on ACTFast if setup is favorableOften the fastest for standard-form systems

Worked Example

Let's solve a typical ACT-style system using both methods, so you can see them side by side. Consider the system:

SYSTEM TO SOLVE
3x + 2y = 16 and x − y = 2
We need to find the values of x and y that satisfy both equations simultaneously.

Method A: Substitution

1
Step 1 — Isolate a variableThe second equation, x − y = 2, is easiest to rearrange. Solve for x: x = y + 2.
x = y + 2
2
Step 2 — Substitute into the other equationReplace x in the first equation with (y + 2): 3(y + 2) + 2y = 16. Distribute: 3y + 6 + 2y = 16. Combine like terms: 5y + 6 = 16.
5y + 6 = 16
3
Step 3 — Solve for ySubtract 6 from both sides: 5y = 10. Divide by 5: y = 2.
y = 2
4
Step 4 — Back-substitute to find xPlug y = 2 back into x = y + 2: x = 2 + 2 = 4.
x = 4
5
Step 5 — Verify the solutionCheck in both original equations. First: 3(4) + 2(2) = 12 + 4 = 16 ✓. Second: 4 − 2 = 2 ✓. The solution is confirmed.
Solution: (4, 2)

Method B: Elimination

1
Step 1 — Align the equationsWrite both equations in standard form: Equation 1: 3x + 2y = 16. Equation 2: x − y = 2. We want to eliminate one variable.
2
Step 2 — Multiply to match coefficientsMultiply the entire second equation by 2 so the y-coefficients become opposites: 2(x − y) = 2(2) gives 2x − 2y = 4. Now the y-terms are +2y and −2y.
2x − 2y = 4
3
Step 3 — Add the equationsAdd Equation 1 and the modified Equation 2: (3x + 2y) + (2x − 2y) = 16 + 4. This simplifies to 5x = 20, so x = 4.
x = 4
4
Step 4 — Substitute backPlug x = 4 into x − y = 2: 4 − y = 2, so y = 2. The result matches our substitution answer.
Solution: (4, 2)
KEY TAKEAWAY
VERIFICATION IS FREE INSURANCE

Strengths, Limitations & Common Pitfalls

Understanding the strengths and limitations of each method — as well as the common mistakes students make — will help you approach ACT systems problems with confidence and efficiency.

Strengths and common pitfalls when solving systems on the ACT
AspectStrengthLimitation / Pitfall
SubstitutionIntuitive; works well when one equation is already solved for a variableCan get messy with fractions; distribution errors are common
EliminationSystematic and fast; avoids fractions when coefficients line upStudents sometimes multiply only part of an equation, not every term
GraphingGreat for conceptual understanding and visual learnersImpractical on the ACT (no graphing calculator section); reading intersection coordinates can be imprecise
Sign ErrorsAwareness of this pitfall leads to more careful workNegative signs in front of parentheses frequently cause mistakes during distribution
Forgetting to Solve CompletelyAnswer choices sometimes test partial workSolving for x but forgetting to find y — or vice versa — is a trap that can lead you to pick a wrong answer
KEY TAKEAWAY
KEY TAKEAWAY

Connection to Advanced Topics

While the ACT primarily tests two-variable linear systems, the underlying ideas extend into more advanced mathematics. Understanding where systems of equations lead can both motivate your current study and prepare you for college-level math.

How ACT-level systems concepts extend to college math
ACT LevelAdvanced Extension
Two linear equations in two unknownsSystems of three or more equations solved using matrices (linear algebra)
Substitution and elimination by handGaussian elimination and row reduction of augmented matrices
Linear–quadratic system (rare on ACT)Nonlinear systems involving circles, ellipses, and higher-degree curves
Two-variable solution as a pointOptimization (linear programming) — finding the best point in a region of solutions

The ACT occasionally includes a system where one equation is linear and the other is quadratic (for example, a line and a parabola). In this case, substitution is almost always the best strategy: solve the linear equation for one variable and substitute into the quadratic, then solve the resulting quadratic equation. You may get zero, one, or two solutions depending on whether the line misses, is tangent to, or crosses the parabola.

LOOKING AHEAD

Practice Problems

Try these five problems in order of increasing difficulty. Each one targets a different skill you will need on the ACT. Work through them on paper before checking the answers.

PROBLEM 1CONCEPTUAL
Consider the system: 2x + 3y = 12 and 4x + 6y = 24. Without solving, how many solutions does this system have? Explain your reasoning.
PROBLEM 2BASIC CALCULATION
Solve the system using substitution: y = 3x − 1 and 2x + y = 9.
3
Solve the system using elimination: 5x − 3y = 7 and 3x + 2y = 18.
PROBLEM 4APPLIED
A movie theater sells adult tickets for $10 and child tickets for $6. On Saturday, 200 tickets were sold for a total of $1,640. How many adult tickets and how many child tickets were sold?
PROBLEM 5CRITICAL THINKING
For what value of k does the system 2x + ky = 8 and kx + 8y = 16 have no solution? Explain your reasoning using the relationship between coefficients.
Varsity Tutors • ACT Math • Systems of Equations