Solving a linear system involves finding the values of variables that satisfy all equations in the system. A linear system typically consists of two or more linear equations with the same set of variables. Here are three common methods to solve these systems: graphing, substitution, and elimination.
Method 1: Graphing
Graphing is a visual method that involves plotting each equation on a coordinate plane and finding the point(s) where they intersect.
Example
Consider the system:
$begin{cases}
2x + y = 5
-x + 2y = -4
end{cases}$
- Graph both equations: Plot the lines $2x + y = 5$ and $-x + 2y = -4$ on the same coordinate plane.
- Find the intersection point: The point where the lines intersect is the solution. In this case, the intersection point is $(2, 1)$
Method 2: Substitution
Substitution involves solving one equation for one variable and then substituting that expression into the other equation.
Example
Consider the same system:
$begin{cases}
2x + y = 5
-x + 2y = -4
end{cases}$
Solve one equation for one variable: Solve the first equation for $y$:
$y = 5 – 2x$
Substitute: Substitute this expression into the second equation:
$-x + 2(5 – 2x) = -4$
Solve for $x$:
$-x + 10 – 4x = -4$
$-5x + 10 = -4$
$-5x = -14$
$x = frac{14}{5}$
Substitute back: Substitute $x = frac{14}{5}$ back into $y = 5 – 2x$ to find $y$:
$y = 5 – 2frac{14}{5} = -frac{3}{5}$
Method 3: Elimination
Elimination involves adding or subtracting equations to eliminate one of the variables, making it easier to solve for the remaining variable.
Example
Consider the same system:
$begin{cases}
2x + y = 5
-x + 2y = -4
end{cases}$
Multiply equations if necessary: Make the coefficients of one variable opposites. Multiply the second equation by 2:
$$
2x + y = 5
-2x + 4y = -8
end{cases}
2. **Add equations**: Add the two equations to eliminate $x$:
$2x + y – 2x + 4y = 5 – 8
$5y = -3$
$y = -frac{3}{5}$
Substitute back: Substitute $y = -frac{3}{5}$ into $2x + y = 5$ to find $x$:
$2x – frac{3}{5} = 5$
$2x = 5 + frac{3}{5}$
$2x = frac{28}{5}$
$x = frac{14}{5}$
Conclusion
Each method has its own advantages and is suitable for different types of problems. Graphing provides a visual solution, substitution is useful for simpler systems, and elimination is efficient for systems with multiple equations. Understanding these methods will help you solve linear systems accurately and efficiently.