← Back to all lessons
Class 10Algebra6:42Published 18 Jul 2024

Solving a Special Type of Pair of Linear Equations

A quick method for solving a pair of linear equations where the coefficients of x and y are swapped between the two equations, avoiding large numbers.

When the coefficient of x in one equation matches the coefficient of y in the other, you can solve the pair without forcing the usual coefficient matching. By adding the two equations and then subtracting them, you get two much simpler equations that are easy to solve. This lesson works through one full example, finding the values of x and y and checking the answer.

What you'll learn

  • How to spot a pair of equations whose x and y coefficients are swapped
  • Why adding and subtracting the two equations gives a faster route than ordinary elimination
  • How to reduce the new equations by dividing out a common factor and finish the solution

Lesson chapters

0:00The pair of equations and the special pattern
1:55Adding the equations and simplifying
3:08Subtracting the equations and simplifying
4:36Solving the two simpler equations
5:02Finding x and the final solution

Lesson notes

This lesson shows a fast way to solve a special pair of linear equations: one where the coefficient of xx in the first equation equals the coefficient of yy in the second, and vice versa. Instead of the usual elimination, we add and subtract the equations to get much smaller numbers.

The given pair

We are asked to solve:

23x+37y=32(1)23x + 37y = 32 \quad (1)

37x+23y=88(2)37x + 23y = 88 \quad (2)

Notice the pattern: the coefficient of xx in (1)(1) is 2323, which is also the coefficient of yy in (2)(2). Likewise 3737 is the coefficient of yy in (1)(1) and of xx in (2)(2). Making coefficients match in the normal way would create large numbers, so we use a shortcut.

Step 1: Add the two equations

Adding (1)(1) and (2)(2), the xx terms give 23+37=6023 + 37 = 60 and the yy terms give 37+23=6037 + 23 = 60:

60x+60y=12060x + 60y = 120

Divide every term by 6060:

x+y=2(3)x + y = 2 \quad (3)

Step 2: Subtract the two equations

Subtracting (2)(2) from (1)(1):

(2337)x+(3723)y=3288(23 - 37)x + (37 - 23)y = 32 - 88

14x+14y=56-14x + 14y = -56

Divide every term by 1414:

x+y=4(4)-x + y = -4 \quad (4)

Step 3: Solve the simpler pair

Equations (3)(3) and (4)(4) have tiny coefficients, so they are easy to solve. Add them:

(x+y)+(x+y)=2+(4)(x + y) + (-x + y) = 2 + (-4)

2y=2y=12y = -2 \quad\Rightarrow\quad y = -1

Step 4: Find x

Put y=1y = -1 into equation (3)(3):

x+(1)=2x=3x + (-1) = 2 \quad\Rightarrow\quad x = 3

Check. In (1)(1): 23(3)+37(1)=6937=3223(3) + 37(-1) = 69 - 37 = 32. In (2)(2): 37(3)+23(1)=11123=8837(3) + 23(-1) = 111 - 23 = 88. Both hold, so the solution is correct.

x=3,y=1x = 3, \quad y = -1

Key takeaways

  • When the xx and yy coefficients are swapped between two equations, adding and subtracting them is faster than ordinary elimination.
  • Adding gives one simple equation and subtracting gives another, each divisible by a common factor.
  • Solving these two small equations and substituting back gives x=3x = 3 and y=1y = -1, which checks out in both original equations.