Solving Systems of Equations

Use substitution and elimination methods

Solving Systems of Equations

Method 1: Substitution

Example: {y=2x+13x+y=16\begin{cases} y = 2x + 1 \\ 3x + y = 16 \end{cases}

Substitute y=2x+1y = 2x + 1 into second equation: 3x+(2x+1)=163x + (2x + 1) = 16 5x=155x = 15 x=3,y=7x = 3, \quad y = 7

Method 2: Elimination

Example: {2x+3y=125x3y=9\begin{cases} 2x + 3y = 12 \\ 5x - 3y = 9 \end{cases}

Add the equations: 7x=217x = 21 x=3,y=2x = 3, \quad y = 2

Solution Types

  • One solution: Lines intersect
  • No solution: Parallel lines
  • Infinitely many: Same line

📚 Practice Problems

1Problem 1easy

Question:

Solve using substitution: {y=3xx+y=12\begin{cases} y = 3x \\ x + y = 12 \end{cases}

💡 Show Solution

Since y=3xy = 3x is already solved for yy, substitute into the second equation:

Step 1: Substitute x+(3x)=12x + (3x) = 12

Step 2: Solve for xx 4x=124x = 12 x=3x = 3

Step 3: Find yy using y=3xy = 3x y=3(3)=9y = 3(3) = 9

Check: 3+9=123 + 9 = 12

Answer: (3,9)(3, 9)

2Problem 2medium

Question:

Solve using elimination: {3x+2y=162x2y=4\begin{cases} 3x + 2y = 16 \\ 2x - 2y = 4 \end{cases}

💡 Show Solution

Notice the yy coefficients are opposites, so we can add the equations:

Step 1: Add the equations 3x+2y=16+2x2y=45x=20\begin{array}{r} 3x + 2y = 16 \\ + \quad 2x - 2y = 4 \\ \hline 5x = 20 \end{array}

Step 2: Solve for xx x=4x = 4

Step 3: Substitute x=4x = 4 into the first equation 3(4)+2y=163(4) + 2y = 16 12+2y=1612 + 2y = 16 2y=42y = 4 y=2y = 2

Answer: (4,2)(4, 2)

3Problem 3hard

Question:

Solve: {2x+3y=74x+6y=10\begin{cases} 2x + 3y = 7 \\ 4x + 6y = 10 \end{cases}

💡 Show Solution

Step 1: Notice that if we multiply the first equation by 2: 2(2x+3y)=2(7)2(2x + 3y) = 2(7) 4x+6y=144x + 6y = 14

Step 2: Compare with the second equation: 4x+6y=144x + 6y = 14 4x+6y=104x + 6y = 10

This says the same expression equals two different numbers, which is impossible!

Answer: No solution (the lines are parallel and never intersect)