CodeMathFusion

🔸 Systems of Linear Equations

Learn to solve systems using graphing, substitution, and elimination methods!

🔄 What is a System?

A system of equations is two or more equations with the same variables.

Example system:

$$\begin{cases} x + y = 10 \\ x - y = 2 \end{cases}$$

We need to find values of $x$ and $y$ that satisfy BOTH equations!

📈 Graphing Method

Graph both equations - the intersection point is the solution!

For the system above:

  • Line 1: $y = 10 - x$
  • Line 2: $y = x - 2$

They intersect at $(6, 4)$ ✨

🎯 Substitution Method

Solve one equation for a variable, then substitute into the other!

Example: Solve $\begin{cases} y = 2x + 1 \\ x + y = 7 \end{cases}$

Step 1: Substitute $y = 2x + 1$ into second equation:

$x + (2x + 1) = 7$

Step 2: Solve: $3x = 6$ → $x = 2$

Step 3: Find $y$: $y = 2(2) + 1 = 5$

Solution: $(2, 5)$

➕ Elimination Method

Add or subtract equations to eliminate a variable!

Example: Solve $\begin{cases} 2x + 3y = 12 \\ 2x - y = 4 \end{cases}$

Step 1: Subtract second from first:

$4y = 8$ → $y = 2$

Step 2: Substitute back: $2x + 3(2) = 12$ → $x = 3$

Solution: $(3, 2)$

🎯 Practice Questions

Master these concepts!

1
Solve by substitution: $\begin{cases} y = x + 2 \\ 2x + y = 11 \end{cases}$
2
Solve by elimination: $\begin{cases} x + y = 8 \\ x - y = 2 \end{cases}$
3
Solve: $\begin{cases} 2x + y = 10 \\ x + y = 6 \end{cases}$
4
Use substitution: $\begin{cases} y = 3x - 1 \\ x + 2y = 12 \end{cases}$
5
Solve: $\begin{cases} 3x + 2y = 12 \\ x - 2y = 4 \end{cases}$
6
Elimination method: $\begin{cases} 2x + 3y = 13 \\ 2x + y = 7 \end{cases}$

🔥 Challenge Questions

Ready for a challenge?

1
Solve: $\begin{cases} 2x - 3y = 7 \\ 4x + y = 11 \end{cases}$
2
What happens with: $\begin{cases} x + y = 5 \\ 2x + 2y = 10 \end{cases}$ (infinitely many solutions!)
3
Solve: $\begin{cases} 3x + 4y = 24 \\ 5x - 2y = 2 \end{cases}$