Systems of Equations Practice Questions

  1. Solve the following system of equations using substitution:
\(\begin{cases} y = 2x + 1 \\ 3x + y = 11 \end{cases}\)
  1. \((2, 5)\)
  2. \((3, 7)\)
  3. \((5, 2)\)
  4. \((1, 3)\)
Show Answer
The correct answer is A!

Since the first equation is already solved for \(y\), substitute \(2x + 1\) for \(y\) in the second equation:

\(3x + (2x + 1) = 11\)

\(5x + 1 = 11\)

\(5x = 10\)

\(x = 2\)

Now substitute \(x = 2\) back into the first equation to find \(y\):

\(y = 2(2) + 1 = 5\)

The solution is \((2, 5)\). You can verify by checking both equations:

\(3(2) + 5 = 11\)

Report bug or error

 

  1. Solve the following system of equations using elimination:
\(\begin{cases} 2x + 3y = 12 \\ 4x – 3y = 6 \end{cases}\)
  1. \((3, 2)\)
  2. \((2, 3)\)
  3. \((6, 0)\)
  4. \((0, 4)\)
Show Answer
The correct answer is A!

Notice that the \(y\)-coefficients are opposites (\(+3y\) and \(-3y\)). Add the two equations to eliminate \(y\):

\((2x + 3y) + (4x – 3y) = 12 + 6\)

\(6x = 18\)

\(x = 3\)

Substitute \(x = 3\) into the first equation:

\(2(3) + 3y = 12 \implies 3y = 6 \implies y = 2\)

The solution is \((3, 2)\). Verify with the second equation:

\(4(3) – 3(2) = 12 – 6 = 6\)

Report bug or error

 

  1. How many solutions does the following system have?
\(\begin{cases} y = 3x + 2 \\ y = 3x – 4 \end{cases}\)
  1. One solution
  2. Two solutions
  3. No solution
  4. Infinitely many solutions
Show Answer
The correct answer is C!

Both equations are in slope-intercept form \((y = mx + b)\). Compare the slopes and \(y\)-intercepts:

  • Equation 1: slope = 3, \(y\)-intercept = 2
  • Equation 2: slope = 3, \(y\)-intercept = −4

The slopes are equal but the \(y\)-intercepts are different, which means the lines are parallel. Parallel lines never intersect, so the system has no solution.

A system with no solution is called inconsistent. If the slopes were different, the lines would intersect at exactly one point. If both the slopes and \(y\)-intercepts were equal, the lines would overlap and there would be infinitely many solutions.

Report bug or error

 

  1. How many solutions does the following system have?
\(\begin{cases} 3x – 6y = 12 \\ x – 2y = 4 \end{cases}\)
  1. One solution
  2. Two solutions
  3. No solution
  4. Infinitely many solutions
Show Answer
The correct answer is D!

Divide every term in the first equation by 3:

\(\dfrac{3x – 6y}{3} = \dfrac{12}{3} \implies x – 2y = 4\)

This is identical to the second equation. Since both equations represent the same line, every point on that line is a solution. The system has infinitely many solutions.

A system like this is called dependent. Whenever one equation is a scalar multiple of the other, the system is dependent and has infinitely many solutions.

Report bug or error

 

  1. Solve the following system of equations:
\(\begin{cases} x + 2y = 8 \\ 3x – y = 3 \end{cases}\)
  1. \((2, 3)\)
  2. \((3, 2)\)
  3. \((4, 2)\)
  4. \((0, 4)\)
Show Answer
The correct answer is A!

Solve the first equation for \(x\):

\(x = 8 – 2y\)

Substitute into the second equation:

\(3(8 – 2y) – y = 3\)

\(24 – 6y – y = 3\)

\(24 – 7y = 3\)

\(-7y = -21\)

\(y = 3\)

Substitute back: \(x = 8 – 2(3) = 2\). The solution is \((2, 3)\).

Report bug or error

 

  1. Solve the following system of equations using elimination:
\(\begin{cases} 3x + 2y = 16 \\ 5x – 3y = 14 \end{cases}\)
  1. \((4, 2)\)
  2. \((2, 5)\)
  3. \((6, -1)\)
  4. \((2, 4)\)
Show Answer
The correct answer is A!

Neither variable cancels immediately, so multiply each equation by a value that creates opposite coefficients. To eliminate \(y\), multiply the first equation by 3 and the second by 2:

\(3(3x + 2y) = 3(16) \implies 9x + 6y = 48\)

\(2(5x – 3y) = 2(14) \implies 10x – 6y = 28\)

Now add the equations to eliminate \(y\):

\(19x = 76 \implies x = 4\)

Substitute \(x = 4\) into the first original equation:

\(3(4) + 2y = 16 \implies 2y = 4 \implies y = 2\)

The solution is \((4, 2)\).

Report bug or error

 

  1. The sum of two numbers is 25 and their difference is 7. What are the two numbers?
  1. 16 and 9
  2. 18 and 7
  3. 15 and 10
  4. 20 and 5
Show Answer
The correct answer is A!

Translate the problem into a system of equations. Let \(x\) be the larger number and \(y\) be the smaller number:

\(\begin{cases} x + y = 25 \\ x – y = 7 \end{cases}\)

Add the two equations to eliminate \(y\):

\(2x = 32 \implies x = 16\)

Substitute back: \(16 + y = 25 \implies y = 9\).

The two numbers are 16 and 9.

Report bug or error

 

  1. Adult tickets cost $8 each and child tickets cost $5 each. A group buys 12 tickets for a total of $81. How many adult tickets were purchased?
  1. 5
  2. 6
  3. 7
  4. 8
Show Answer
The correct answer is C!

Let \(a\) represent the number of adult tickets and \(c\) represent the number of child tickets. Set up the system:

\(\begin{cases} a + c = 12 \\ 8a + 5c = 81 \end{cases}\)

Solve the first equation for \(c\): \(c = 12 – a\). Substitute into the second equation:

\(8a + 5(12 – a) = 81\)

\(8a + 60 – 5a = 81\)

\(3a = 21\)

\(a = 7\)

The group purchased 7 adult tickets (and 5 child tickets).

Report bug or error

 

  1. Which ordered pair is the solution to the following system?
\(\begin{cases} 2x + y = 7 \\ x – y = 2 \end{cases}\)
  1. \((1, 5)\)
  2. \((4, -1)\)
  3. \((3, 1)\)
  4. \((2, 0)\)
Show Answer
The correct answer is C!

The solution to a system of equations must satisfy both equations simultaneously. Test \((3, 1)\) in each equation:

  • Equation 1: \(2(3) + 1 = 6 + 1 = 7\)
  • Equation 2: \(3 – 1 = 2\)

Both equations are satisfied, so \((3, 1)\) is the solution. You can verify that the other choices fail at least one equation. For example, \((4, -1)\) satisfies the first equation (\(2(4) + (-1) = 7\)) but not the second (\(4 – (-1) = 5 \neq 2\)).

Report bug or error

 

  1. Which ordered pair satisfies both of the following inequalities?
\(\begin{cases} y \gt 2x – 1 \\ y \leq -x + 5 \end{cases}\)
  1. \((1, 3)\)
  2. \((3, 1)\)
  3. \((0, -2)\)
  4. \((4, 2)\)
Show Answer
The correct answer is A!

A solution to a system of inequalities must satisfy every inequality. Test \((1, 3)\):

  • Inequality 1: \(3 \gt 2(1) – 1 = 1\) → \(3 \gt 1\)
  • Inequality 2: \(3 \leq -(1) + 5 = 4\) → \(3 \leq 4\)

Both inequalities are satisfied. Checking the other choices:

  • Choice B: \((3, 1)\) → \(1 \gt 2(3) – 1 = 5\)? No.
  • Choice C: \((0, -2)\) → \(-2 \gt 2(0) – 1 = -1\)? No.
  • Choice D: \((4, 2)\) → \(2 \gt 2(4) – 1 = 7\)? No.

Report bug or error

 

  1. Find all solutions to the following nonlinear system:
\(\begin{cases} y = x^2 \\ y = x + 2 \end{cases}\)
  1. \((2, 4)\) only
  2. \((-1, 1)\:\) and \(\:(2, 4)\)
  3. \((1, 1)\:\) and \(\:(-2, 4)\)
  4. No solution
Show Answer
The correct answer is B!

Since both equations equal \(y\), set the right sides equal to each other:

\(x^2 = x + 2\)

Rearrange into standard form and factor:

\(x^2 – x – 2 = 0\)

\((x – 2)(x + 1) = 0\)

So \(x = 2\) or \(x = -1\). Find the corresponding \(y\)-values using \(y = x + 2\):

  • \(x = 2\): \(y = 2 + 2 = 4\) → \((2, 4)\)
  • \(x = -1\): \(y = -1 + 2 = 1\) → \((-1, 1)\)

The system has two solutions. Graphically, this means the parabola and the line intersect at two points.

Report bug or error

 

  1. A chemist needs to mix a 20% acid solution with a 50% acid solution to produce 12 liters of a 30% acid solution. How many liters of the 20% solution are needed?
  1. 4 liters
  2. 6 liters
  3. 8 liters
  4. 10 liters
Show Answer
The correct answer is C!

Let \(x\) be the liters of 20% solution and \(y\) be the liters of 50% solution. Set up two equations — one for total volume and one for total acid:

\(\begin{cases} x + y = 12 \\ 0.20x + 0.50y = 0.30(12) \end{cases}\)

Simplify the second equation: \(0.20x + 0.50y = 3.6\). Solve the first equation for \(y\):

\(y = 12 – x\)

Substitute:

\(0.20x + 0.50(12 – x) = 3.6\)

\(0.20x + 6 – 0.50x = 3.6\)

\(-0.30x = -2.4\)

\(x = 8\)

The chemist needs 8 liters of the 20% solution (and 4 liters of the 50% solution).

Report bug or error

 

  1. The length of a rectangle is 3 more than twice its width. If the perimeter is 42 cm, which system of equations represents this situation?
  1. \(\begin{cases} l = 2w + 3 \\ l + w = 42 \end{cases}\)
  2. \(\begin{cases} l = 2w + 3 \\ 2l + 2w = 42 \end{cases}\)
  3. \(\begin{cases} w = 2l + 3 \\ 2l + 2w = 42 \end{cases}\)
  4. \(\begin{cases} l = 2w + 3 \\ lw = 42 \end{cases}\)
Show Answer
The correct answer is B!

Translate each sentence into an equation:

  • “The length is 3 more than twice the width.”
    \(l = 2w + 3\)
  • “The perimeter is 42 cm.”
    \(2l + 2w = 42\)

Choice A uses \(l + w = 42\), which is the semi-perimeter, not the full perimeter. Choice C reverses the relationship between length and width. Choice D uses the area formula (\(lw\)) instead of the perimeter formula.

Report bug or error

 

  1. Given the following system, what is the value of \(x + y\)?
\(\begin{cases} x + 2y = 12 \\ 2x + y = 9 \end{cases}\)
  1. 5
  2. 7
  3. 10
  4. 14
Show Answer
The correct answer is B!

One approach is to add both equations together:

\((x + 2y) + (2x + y) = 12 + 9\)

\(3x + 3y = 21\)

Factor out the 3:

\(3(x + y) = 21 \implies x + y = 7\)

This shortcut avoids solving for \(x\) and \(y\) individually. When a question asks for a combination of variables rather than individual values, look for ways to manipulate the equations directly to get that combination.

Report bug or error

 

  1. Maria is 4 times as old as her daughter. In 10 years, Maria will be twice as old as her daughter. How old is her daughter now?
  1. 3 years old
  2. 5 years old
  3. 8 years old
  4. 10 years old
Show Answer
The correct answer is B!

Let \(m\) represent Maria’s current age and \(d\) represent her daughter’s current age. Translate each statement into an equation:

  • “Maria is 4 times as old as her daughter.”
    \(m = 4d\)
  • “In 10 years, Maria will be twice as old.”
    \(m + 10 = 2(d + 10)\)

Substitute \(m = 4d\) into the second equation:

\(4d + 10 = 2(d + 10)\)

\(4d + 10 = 2d + 20\)

\(2d = 10\)

\(d = 5\)

The daughter is 5 years old (and Maria is 20).

Report bug or error