Linear Equations
Concepts (2)
Master solving simultaneous linear equations using elimination or substitution for speed. Quickly find values of two variables from two given equations for SSC CGL.
Core Formula
Simultaneous linear equations involve two or more linear equations with the same set of variables. For SSC CGL, you primarily deal with two equations and two variables (x, y).
General form: a₁x + b₁y = c₁ a₂x + b₂y = c₂
Where a₁, b₁, c₁, a₂, b₂, c₂ are constants, and x, y are the variables to be found.
Worked Example 1 (Elimination Method)
Problem: Solve for x and y:
2x + 3y = 134x - y = 5
Solution:
- Step 1: Aim to make the coefficients of one variable equal in magnitude. Multiply equation (2) by 3 to make the 'y' coefficients +3 and -3.
3 * (4x - y) = 3 * 512x - 3y = 15(Equation 3) - Step 2: Add Equation (1) and Equation (3) to eliminate 'y'.
(2x + 3y) + (12x - 3y) = 13 + 1514x = 28x = 2 - Step 3: Substitute the value of x back into either original equation (e.g., Equation 1).
2(2) + 3y = 134 + 3y = 133y = 9y = 3 - Answer: x = 2, y = 3
Worked Example 2 (Substitution Method)
Problem: Solve for x and y:
x + 2y = 73x - y = 7
Solution:
- Step 1: Express one variable in terms of the other from one equation. From Equation (1):
x = 7 - 2y(Equation 3) - Step 2: Substitute this expression for x into the other equation (Equation 2).
3(7 - 2y) - y = 721 - 6y - y = 721 - 7y = 7 - Step 3: Solve for y.
-7y = 7 - 21-7y = -14y = 2 - Step 4: Substitute the value of y back into Equation (3) to find x.
x = 7 - 2(2)x = 7 - 4x = 3 - Answer: x = 3, y = 2
Shortcuts & Tricks
- Check Options: For objective questions, often the fastest way is to plug in the given options (x, y pairs) into both equations. The pair that satisfies both is the answer.
- Sum and Difference: If you have equations like
x + y = Sandx - y = D:x = (S + D) / 2y = (S - D) / 2This is incredibly fast for specific problem types. E.g., Sum of two numbers is 45, difference is 11. Larger number (x) = (45+11)/2 = 28. Smaller number (y) = (45-11)/2 = 17. - Coefficient Manipulation: Look for opportunities to add or subtract equations directly if coefficients are already similar or easily made similar (e.g.,
ax + by = candbx + ay = d). Adding them gives(a+b)(x+y) = c+d, subtracting gives(a-b)(x-y) = c-d. This can simplify findingx+yandx-yfirst.
Common Mistakes
- Sign Errors: Careless mistakes when multiplying by negative numbers or transposing terms across the equals sign.
- Calculation Errors: Simple arithmetic mistakes, especially when dealing with larger numbers or fractions.
- Not Checking Solutions: Always quickly substitute your derived x and y values back into both original equations to verify. This takes seconds and prevents losing marks.
Derivation (brief)
The core idea behind solving simultaneous linear equations is to reduce a system of multiple equations with multiple variables into a single equation with a single variable, which is then easy to solve. Both elimination and substitution methods achieve this. Elimination works by adding/subtracting equations to cancel out one variable. Substitution works by expressing one variable in terms of the other and replacing it in the second equation, effectively reducing the number of variables in that equation.
Advanced Examples
Problem: Solve for x and y:
1/x + 1/y = 5/61/x - 1/y = 1/6
Solution:
- Step 1: Let
a = 1/xandb = 1/y. The equations become:a + b = 5/6(Eq. 3)a - b = 1/6(Eq. 4) - Step 2: Add Eq. 3 and Eq. 4:
(a + b) + (a - b) = 5/6 + 1/62a = 6/62a = 1a = 1/2 - Step 3: Substitute
a = 1/2into Eq. 3:1/2 + b = 5/6b = 5/6 - 1/2b = 5/6 - 3/6b = 2/6 = 1/3 - Step 4: Convert back to x and y:
1/x = a => 1/x = 1/2 => x = 21/y = b => 1/y = 1/3 => y = 3 - Answer: x = 2, y = 3
Variation Types
Simultaneous linear equations can have:
- Unique Solution: (Intersecting lines) - This is the most common case for SSC CGL. Condition:
a₁/a₂ ≠ b₁/b₂ - No Solution: (Parallel lines) - The lines never intersect. Condition:
a₁/a₂ = b₁/b₂ ≠ c₁/c₂ - Infinitely Many Solutions: (Coincident lines) - The lines are identical. Condition:
a₁/a₂ = b₁/b₂ = c₁/c₂
For SSC CGL, you'll mostly encounter problems with unique solutions, but understanding these conditions helps in theoretical questions or when an equation system seems 'unsolvable'.
Time-Saving Methods
- Cross-Multiplication Method (Optional but fast for specific cases):
Given
a₁x + b₁y + c₁ = 0anda₂x + b₂y + c₂ = 0x / (b₁c₂ - b₂c₁) = y / (c₁a₂ - c₂a₁) = 1 / (a₁b₂ - a₂b₁)This method is systematic and can be very fast if you remember the pattern, but elimination is generally more intuitive and less prone to sign errors for many candidates. - Strategic Addition/Subtraction: If you need
x+yorx-yrather than individualxandy, sometimes simply adding or subtracting the given equations directly can yield the answer much faster than solving forxandyseparately. For example, if5x + 3y = 20and3x + 5y = 12, adding them gives8x + 8y = 32, sox + y = 4directly.
Master linear equations in one variable for quick marks. Focus on transposition and converting word problems to equations for speed and accuracy in SSC CGL.
Core Formula
Linear equations in one variable are equations involving a single variable (usually 'x') raised to the power of 1. Their standard form is:
ax + b = 0
where 'a' and 'b' are constants, and 'a' ≠ 0. Another common form is ax + b = cx + d.
The goal is to find the value of the variable 'x' that satisfies the equation.
Worked Example 1
Question: Solve for x: 5x - 8 = 2x + 7
Solution:
- Group terms with 'x' on one side and constant terms on the other.
5x - 2x = 7 + 8 - Simplify both sides.
3x = 15 - Isolate 'x' by dividing both sides by its coefficient.
x = 15 / 3x = 5
Worked Example 2
Question: If 7 is subtracted from three times a number, the result is 11. Find the number.
Solution:
- Let the unknown number be 'x'.
- Translate the word problem into an equation:
"Three times a number" is
3x. "7 is subtracted from three times a number" is3x - 7. "The result is 11" means3x - 7 = 11. - Solve the equation:
3x - 7 = 113x = 11 + 7(Transposing -7 to the right side)3x = 18x = 18 / 3x = 6The number is 6.
Shortcuts & Tricks
- Transposition Rule: When moving a term from one side of the equation to the other, change its sign. Addition becomes subtraction, multiplication becomes division, and vice-versa. Master this for speed.
- Mental Math: For simpler equations, try to solve them mentally without writing every step. For example,
2x + 4 = 10->2x = 6->x = 3should be a quick mental calculation. - Option Checking (for MCQs): If solving an equation seems complex or time-consuming, especially in word problems, plug in the given options into the equation or the problem statement. The option that satisfies the condition is the answer. This can often be faster than direct solving.
Common Mistakes
- Sign Errors: The most frequent mistake is incorrect sign changes during transposition (e.g.,
x - 5 = 10becomesx = 10 - 5instead ofx = 10 + 5). Always double-check signs. - Calculation Errors: Simple arithmetic mistakes (addition, subtraction, multiplication, division) can lead to wrong answers. Practice mental math to minimize these.
- Misinterpreting Word Problems: Incorrectly translating the verbal statement into a mathematical equation. Read the problem carefully, identify keywords (e.g., "sum," "difference," "product," "quotient," "times," "is"), and form the equation step-by-step.
Ready to practice? Start an interactive lesson.
Start Lesson: Simultaneous Linear Equations