How do you solve #(x + 5)(3x+1)=0#?

1 Answer
Aug 1, 2015

#{(x_1 = -5), (x_2 = -1/3) :}#

Explanation:

You can easily solve this equation by recognizing that the product of two terms is equal to zero if either one of those terms (or both, that's not the case here) is equal to zero.

In your case, the product of #(x+5)# and of #(3x+1)# will be equal to zero when

#(x+5) = 0# or #(3x+1) = 0#

This means tha the two solutions to your equation will be

#x+5 = 0 => x_1 = color(green)(-5)#

and

#3x+1 = 0 => x_2 = color(green)(-1/3)#

If, for some reason, you'd want to complicate things a little, you could rewrite your equation in quadratic form

#(x+5)(3x+1) = 0#

#3x^2 + 16x + 5 = 0#

and use the quadratic formula to solve for the two solutions.

#color(blue)(x_(1,2) = (_b +- sqrt(b^2 - 4ac))/(2a)#

In your case, you have #a=3#, #b=16#, and #c=5#, so

#x_(1,2) = (-16 +- sqrt(16^2 - 4 * 3 * 5))/(2 * 3)#

#x_(1,2) = (-16 +- sqrt(196))/6 = (-16 +- 14)/8#

Once again, you'd get

#x_1 = (-16 - 14)/6 = -5#

and

#x_2 = (-16 + 14)/6 = -1/3#