Solving A Quadratic Equation by Factoring

94 Views Asked by At

How to solve the following quadratic equation by factoring?

And what to do when the 2nd degree term has a non-1 coefficient?

$$ 3x^2 + 11x - 4 = 0 $$

Essentially, what I'm asking is how can I factor $3x^2 + 11x - 4$ as the product of two linear expressions?

5

There are 5 best solutions below

1
On BEST ANSWER

$$3x^2+11x-4=(3x-1)(x+4).$$

Can you agree ?

4
On

If your quadratic polynomial has rational roots, you will be able to solve it like this:

$$A=3x^2 + 11x - 4$$ $$3A=9x^2 + 11(3x) - 12$$ $$3A=(3x)^2 + 11(3x) - 12$$

Now substitute $u=3x$ and you can see that $3A=(u+12)(u-1)$

Plug $u=3x$ back in the equation:

$$3A=3(x+4)(3x-1)$$ $$A=(x+4)(3x-1)$$

If your polynomial $p(x)=ax^2+bx+c$ does not have rational roots, you should first calculate its discriminant $b^2-4ac$ and then use the following formula that always works:

$$x_{1,2}=\frac{-b \pm \sqrt{b^2-4ac}}{2a}$$

0
On

$$3x^2+11x-4=3x^2+12x-x-4=3x(x+4)-(x+4)=(3x-1)(x+4).$$

0
On

Let’s follow Sridhara, http://www-history.mcs.st-andrews.ac.uk/Biographies/Sridhara.html.

First multiply by $12$: $$36x^2+132x=48,$$ then complete the square by adding $11^2$: $$36x^2+132x+11^2=48+121\iff (6x+11)^2=169.$$ Finally take square root.

Alternatively, you may factor from here: $$0=(6x+11)^2-13^2=(6x+11+13)(6x+11-13).$$

0
On

A bit of trial and error.

There are $2$ factors: $(ax +b)(cx +d)$.

Assume: $a,b,c,d \in \mathbb{Z}$.

1) Coefficient of $x^2$ is $3$:

$ac =3$, try $a=3$, and $c=1$:

$(3x+b)(x+d)$.

2) The constant term :

$bd=-4$.

Choices are : $(b,d)= (-2,2)$, $(b,d) =(2,-2)$, $(b,d)=(4,-1)$, or $(b,d)=(-1,4)$.

3) The coefficient of $x$ :

$3d+b=11$.

Hence $(b,d) =(-1,4)$ qualifies.

Altogether:

$(3x-1)(x+4)$.