4x^-12x+9=0
Show me the next step from there, if you can please.
Just to confirm, do you mean 4x
2 or 4x
-12x? Because the two are very different, and the latter is not something you'd expect to see in beginner algebra where you're just starting factorization. I'll assume the former for now, but you should bear the notation in mind since you seem to be consistently using just the power notation symbol ^ without actually specifying the power (It'd be like saying 2+= 4, which I've not seen since my old C++ class). ^_^
Right,
second-order factorization for beginners. Now, I'm no good at explaining things, either, but there are a few ways to go about this. You have your equation 4x
2-12x+9. Now, you need to figure out how to break it apart (we'll assume you're already told that you need to break it apart). We'll go about this the other way: We know that there is some (Ax+B)(Cx+D) that'll spit out what we want: (Ax+B) and (Cx+D) are the "factors" involved that can be multiplied together using the FOIL rule-of-thumb Descan wrote out. Just for reference, we'll write down those equations for this particular problem, just to be complete.
- A*C = 4
- B*D = 3
- B*C+D*A = 12
Nice, but not nice; we have a system of three equations for four unknowns. At any rate, let's look at the coefficients of the full equation: 4, -12, and 9. These are what we'll be breaking down, so let's see how we can do so:
- 4 is either 2*2 or 1*4, or negative permutations therein: -2*-2 or -1*-4
- -12 is either -1*12, 1*-12, -2*6, 2*-6, -3*4, or 3*-4
- All of these in turn breaks down to some variation on -2*(2*3), 2*(-2*3), or 2*(2*-3), depending on where the negative-sign ends up
- 9 is either 1*9 or 3*3, or negative permutations therein: -1*-9 or -3*-3
You'll notice some common factors here - specifically, 2, 4, and 3. In particular, neglecting the signs, there are only two possibilities for
A*
C and
B*
D in our factors, so the real sticking point is how to put them together to get 12. Well, did you notice the simplification I indented in the above, under 12? If
A and
C were the same (that is, if we went with 4 = 2*2, making both
A and
C 2) and
B and
D were the same (likewise, with 3), why, you'd end up with 2*(
B*
C) or 2*(
A*
D), which are the same: 2*(2*3) = 12; we're almost there, but we missed the sign! That means that there must be a negative sign somewhere in there: either
A and
C are -2, or
B and
D are -3, but it can't be both, because they'd cancel. Let's try each:
...well, that's interesting; they both work. And that means that you have not one, but two ways to factor this problem. The first is the factorization Karlito gave, and the second is the following:
(-2x+3)(-2x+3)=(-2x+3)
2This actually happens because it's the same factor, whether you go with (2x-3) or (-2x+3)=-(2x-3), squared. Specifically, it's the same reason why 4 is both 2*2 and -2*-2 - the negative signs will cancel out when you multiply out, which can be shown by simplifying one of them:
(-2x+3)
2 = [(-1)*(2x-3)]
2 = (-1)
2 * (2x-3)
2 = 1 * (2x-3)
2 = (2x-3)
2Two different ways to factor the same equation, and you can actually pick either. Because they're the same, they'll both give you the same value for x in the end when you solve the full formula.
There are more complex explicit methods that can be used to factor polynomials (Kronecker, I do not miss you at all), and I could try to go into them if you wish, but it's been quite some time since I've done it. A lot of the above is just rule-of-thumb and practice, along with educated guessing (for instance, spotting that the coefficients are all 2s or 3s).
EDIT: I really wish there was an [indent] tag, though. It'd make those equations much easier to pick out. Formatting tweaks and some wording adjusted.