Andrew K. answered 10/12/13
Tutor
New to Wyzant
Karin is correct, above - the quadratic formula can be used to solve this equation. However, it's not the only way to do it. You could also use the "completing the square" method. Although I think the quadratic formula is easier, and it will absolutely work for any quadratic equation you could be given, some homework or test questions may specifically ask for you to solve a quadratic using the "completing the square" method, so I'll show how to use it below:
To do so, we will take the typical ax2 + bx + c = 0 format, and move the constant "c" term to the other side of the equation:
3x2 - 2x -4 = 0
3x2 - 2x = 4
Next, if the "a" in front of the x2 term is anything other than 1, we will divide it out of each term in the equation:
x2 - (2/3)x = 4/3
Now, the hardest part, we add the square of half of the new "b" constant in front of the x term to both sides of the equation. In this case, ((1/2)*(2/3))2 = 1/9, so 1/9 is added to both sides:
x2 - (2/3)x + (1/9) = 4/3 + 1/9 = 12/9 + 1/9 = 13/9
This process allows us to factor the left side of the equation into:
(x - 1/3)2 = 13/9
Now we take the square root of both sides, being careful to remember that the square root of any given positive number could be positive or negative. (For example, the square root of 9 is either 3 or -3). In practice, this means that we can set up two different equations, to give us our two possible x-value solutions to this quadratic, one where the constant on the right side of the equation is positive, and one where it is negative:
x - 1/3 = +/- sqrt(13)/3
x = 1/3 + sqrt(13)/3 OR x = 1/3 - sqrt(13)/3
x = (1 + sqrt(13)) OR x = (1 - sqrt(13))
3 3