How do you solve the system 5a+3b=17 and 4a-5b=21?

1 Answer

To solve a system of linear equations that are both in standard form, the most efficient method to use would be the "elimination method".

Explanation:

To carry out elimination, you need to alter one (or both) of the equations so as to have one of the variables (and their coefficient) match the same one in another equation.

In your example, you have:

1) #5a + 3b = 17 #
2) #4a - 5b = 21 #

Say I want to solve for b, this means I need to eliminate a. To do this, I need to multiply eq. 1 by 4 and eq. 2 by 5 like so:

1) # 4[5a + 3b = 17] #
2) # 5[4a - 5b = 21] #

This results in:

1) # 20a + 12b = 68 #
2) # 20a - 25b = 105 #

Now, if the variable you are trying to eliminate has the same sign in both equations, you subtract the equations. If the signs are opposite, you add them. To remember this, think OASS (opposite, add, same, subtract). In this case, the signs are the same so you want to subtract the equations, resulting in:

# (20a-20a)-(12b-25b)=(68-105) #

# 37b = - 37 #

# b = -1 #

Now that you have b, you can substitute that back into one of the original equations to solve for a. I'll sub it into eq. 1:

# 5a + 3(-1) = 17 #

Solving for a:

# 5a = 20 #

# a = 4 #

Therefore, your solution set (or point of intersection) is (4, -1).

Hopefully, this was all clear and I hope you found it helpful! :)