Kinshook
What is the product of all possible values of x for the equation x^3 - 5x^2 + 8x - 4= 0?
A. 4
B. 2
C. -4
D. -2
E. 8
Source: GMAT Quant
I have no idea what that source is, but you don't need to factor proper cubics on the GMAT, at least when grouping is impossible, and you don't need to know any theorems about their roots. So this question is well out of scope.
If a cubic begins with "x^3" (and not something more complicated like "5x^3") then the standard way to factor, if you can't group terms, is to focus on the number at the end, "-4". If we can factor this cubic into something like (x - a)(x - b)(x - c) (which isn't always possible), then the product -abc will be equal to -4. So a, b and c will be factors of 4. So we can just plug the factors of 4, including negative ones, into the original equation until we find a solution that works. This can take a long time. Here if you plug in x = 1 first, you get lucky on your first try, but if instead you try x = 4 and x = -4 first, for example, the question already takes an inordinate amount of time. The GMAT is not a test of how luckily you guess when you plug numbers into things, so that's already a reason these types of questions are unrealistic.
If x = 1 is a solution to the cubic, then x-1 is a factor of the cubic. So we know
(x - 1)(x^2 + bx + c) = x^3 - 5x^2 + 8x - 4
c must equal 4 to give us the product of -4 at the end, so
(x - 1)(x^2 + bx + 4) = x^3 - 5x^2 + 8x - 4
and if we multiply out the left side, we find we get a (b -1)x^2 term (you could instead compare the x terms if you wanted to). Since we have -5x^2 on the right, b - 1 = -5, and b = -4. So we have just shown that
x^3 - 5x^2 + 8x - 4 = (x - 1)(x^2 - 4x + 4)
and we can finish factoring:
x^3 - 5x^2 + 8x - 4 = (x - 1)(x^2 - 4x + 4) = (x - 1)(x - 2)^2
Since this cubic equals zero, it has two solutions, x = 1 and x = 2. These are the only two possible values of x, and their product is 2, so that is the answer.
You'll never need to solve a problem like this on the GMAT, but you might need some of the math above in a much simpler context, so there might be a reason to understand it at least.
The lone situation where I've needed to factor a genuine four-term cubic on an official question is one where a 'grouping' technique is available, and even then, the question usually completes the first step for you. If you saw a cubic like this one:
x^3 + 5x^2 - 9x - 45 = 0
you can group the terms in pairs and lift out a common factor:
x^2(x + 5) - 9(x + 5) = 0
and now (x + 5) is a common factor in both terms, so we can factor it out:
(x^2 - 9)(x + 5) = 0
(x + 3)(x - 3)(x + 5) = 0
That's something I could imagine seeing on the GMAT, because you don't need any special knowledge about cubic polynomials to solve -- there are definitely questions at least where you need to see that you can factor (x+5) from x^2(x+5) - 9(x + 5).