Factorizations
Factorizations
Sometimes you will be given really bad looking expressions. It can be in inequality problems,
systems of equations and some others. In most of situations this expressions will factor really
nicely, so it’s helpful to know how to find factorization of some expressions. It isn’t crucial, but it
can save you some time or even help solve whole problem, so it’s nice to know.
How to factor?
This is question for which there aren’t loads of options. In most of cases you have some polynomial
expressions, so we will care only about them for now. The most helpful theorem will be Bezout
theorem in our situation. It says that if we have some polynomial P (x, y, ..., sth) of few variables
(maybe 1), then (x − Q(y)) can be factored if x = Q(y) implies P (x, y, ..., sth) = 0. It is mostly
used in situations, like if x + y = 0 implies that our expression is 0, then we can factor x + y from
our expression.
Except of Bezout theorem, there are some expressions, which are used really often, which you should
know. Here is the list of most important factorizations.
• x2 + 2xy + y 2 = (x + y)2
• x2 − 2xy + y 2 = (x − y)2
• x2 − y 2 = (x − y)(x + y)
• xn − y n = (x − y)(xn−1 + xn−2 y + ... + xy n−2 + y n−1
• xn + y n = (x + y)(xn−1 − xn−2 y + xn−3 y 2 − ... − xy n−2 + y n−1 for odd n.
1
Examples
k k
x2 − y 2
k k k−1 k−1 k−1
To factor this we can use factorization for difference of squares. x2 − y 2 = (x2 + y 2 )(x2 −
k−1 k−1 k−1 k−2 k−2 k−2 k−2 k−1 k−1 k−2 k−2
y 2 ) = (x2 + y 2 )(x2 + y 2 )(x2 − y 2 ) = ... = (x2 + y 2 )(x2 + y 2 )...(x2 +
2
y )(x + y)(x − y)
x4 + x2 y 2 + y 4
If there are only even powers (but not only then), then you should try to complete to square.
In this situation we have x4 + x2 y 2 + y 4 = x4 + 2x2 y 2 + y 4 − x2 y 2 = (x2 + y 2 )2 − (xy)2 =
(x2 − xy + y 2 )(x2 + xy + y 2 )
(x + y)3 − x3 − y 3
We can expand this expression to have (x + y)3 − x3 − y 3 = 3x2 y + 3xy 2 = 3xy(x + y)
Exercises
Factorize following expressions:
1. (x + y)5 − x5 − y 5
2. (x + y + z)3 − x3 − y 3 − z 3
2
6. xy 3 + yz 3 + zx3 − x3 y − y 3 z − z 3 x
7. 4(x2 + xy + y 2 )3 − 27x2 y 2 (x + y)2
8. x2 y 2 z 2 + (x2 + yz)(y 2 + zx)(z 2 + xy)
Hints