In this part, we will learn how to solve systems of two linear equations with two variables. A "system of equations" is a set of equations that we solve simultaneously to find values for the variables that satisfy all the equations in the system. There are two commonly used methods for solving these systems: Substitution and Elimination. Let's explore them step by step.
📚 What is a System of Equations?
In Digital SAT, a system of equations consists of two linear equations. Each equation typically contains one or two variables. In the context of a system of two linear equations with two variables, we are solving for values of two variables, such as x and y, that make both equations true at the same time.
For example:
Equation 1: −2x+5y=65
Equation 2: 5x−5y=−20
Here, x and y are the variables. Our goal is to determine the specific values of x and y that satisfy both equations.
💡 Note: A single equation on its own, like −2x+5y=65, is not sufficient to determine the exact values of x and y. Multiple solutions exist if you only solve one equation.
📚 Substitution Method
The Substitution Method involves isolating one variable in one equation and substituting its expression into the other equation. This method works especially well when one of the equations is already solved for one variable in terms of the other, or can easily be rearranged to this form.
➥ Steps to Solve Using Substitution:
#1. Solve for one variable in one of the equations.
- Rearrange one equation to express one variable (e.g., x) in terms of the other (e.g., y).
#2. Substitute this expression into the other equation.
#3. Solve for the variable.
#4. Substitute back the value found in Step 3 into the expression from Step 1 to find the value of the other variable.
➥ When to Use Substitution:
-
One of the equations is already in the form x= or y=, or can be easily rearranged into this form.
-
The coefficients of one variable make isolation easy.
➥ See an Example:
Solve the following system using Substitution:
y=2x+1(Equation 1)
x+y=7(Equation 2)
Step 1: Solve for one variable (already done in Equation 1: y=2x+1).
Step 2: Substitute y=2x+1 into Equation 2.
x+(2x+1)=7
Step 3: Simplify and solve for x.
3x+1=7⟹x=2
Step 4: Substitute x=2 into Equation 1 to find y.
y=2(2)+1=5
Final Answer: x=2,y=5
📚 Elimination Method
The Elimination Method involves adding or subtracting the equations to eliminate one of the variables. This method is particularly useful when the coefficients of one variable are the same (or can be made the same through multiplication).
➥ Steps to Solve Using Elimination:
#1. Align the equations so that like terms (e.g., x, y, and constants) are in columns.
#2. Multiply one or both equations (if necessary) so that the coefficients of one variable are identical or opposites.
#3. Add or subtract the equations to eliminate the chosen variable.
-
Addition eliminates a variable when the coefficients are opposites (e.g., 3x and −3x).
-
Subtraction eliminates a variable when the coefficients are the same (e.g., 4y−4y=0).
#4. Solve for the remaining variable.
#5. Substitute the found value into one of the original equations to find the value of the other variable.
➥ When to Use Elimination:
-
The variables have coefficients that are already the same, opposite, or can easily be made so.
-
Substitution would be messy or overly complicated.
➥ See an Example:
Solve the following system using Elimination:
2x+y=7(Equation 1)
3x−y=8(Equation 2)
Step 1: Align the equations. (already aligned)
Step 2: Add the equations to eliminate y.
(2x+y)+(3x−y)=7+8
5x=15
Step 3: Solve for x.
5x=15⟹x=3
Step 4: Substitute x=3 into one of the original equations to find y.
Using 2x+y=7:
2(3)+y=7⟹y=1
Final Answer: x=3,y=1
By practicing both methods (Substitution and Elimination), you can choose the one that's most efficient depending on the structure of the system of equations. Identifying which method to use and applying it correctly can make you solve in a quick and wise way!