Learn the Process of Factorising: Step-by-Step Guide with Examples

  • Thread starter Thread starter Gringo123
  • Start date Start date
AI Thread Summary
Factorizing an expression involves rewriting it as a product of its factors, not expanding it. For example, the expression 4x² - 4 can be factored as 4(x² - 1) = 4(x - 1)(x + 1). Recognizing patterns, such as the difference of squares, is crucial for effective factorization. The process often requires practice and familiarity with common factorization techniques, as well as trial and error for more complex polynomials. Ultimately, mastering factorization relies on understanding these principles and applying them consistently.
Gringo123
Messages
141
Reaction score
0
I know that factorising means expanding an equation and adding brackets but what is the process that you follow to do that?

For example, how would you factorise:

4x squared - 4

?
 
Physics news on Phys.org
2 (2 x^2-1)
 
Gringo123 said:
I know that factorising means expanding an equation and adding brackets but what is the process that you follow to do that?

For example, how would you factorise:

4x squared - 4

?
Factoring (as we on this side of the Atlantic call it) is not something that is done to an equation. Factoring an expression means writing the expression as a product of factors. For your example, 4x2 - 4 = 4(x2 - 1) = 4(x - 1)(x + 1). The original expression is now factored. Alternatively, you could go one small step further to 22(x - 1)(x + 1), so that every factor is now broken down into prime factors.

Note that 4x2 - 4 \neq 2(2x2 - 1), as Tevion asserted in another post in this thread. If you expand (i.e., multiply) the two factors shown on the right side, you get 4x2 - 2, which is different from 4x2 - 4.

If you factor an expression, you can always check that your factors are correct by multiplying the factors. If the factors are correct, multiplying them together should get you the original unfactored expression.
 
The easy part of factoring is identifying common factors and pulling them out. In your example, for instance, the number 4 is common to both factors, so you get

4x^2-4=4(x^2-1)

The hard part is factoring polynomials. Recognizing a few common patterns helps in many situations. One pattern you need to recognize is the difference of squares:

x^2-a^2 = (x+a)(x-a)

Identifying this pattern in your sample problem allows you to complete its factorization into 4(x+1)(x-1). You should also be able to recognize a perfect square:

x^2+2bx+b^2 = (x+b)^2

For example, x2-6x+9 = [x+(-3)]^2.

If you're asked to factor something like x2+8x+15, however, you essentially end up making educated guesses. This polynomial factors into (x+3)(x+5). Multiplying it out, you see the 3 and 5 multiply to give the constant term 15, and the 8x results from the sum of 3x and 5x. What you're trying to do is reverse this process. So look at the constant term, including its sign, and figure out pairs of factors it has; then sum those pairs to see if it gives you the right middle term. If it doesn't, try a different pair.

For example, suppose you're asked to factor x2-5x-6. The possible pairs of factors of -6 are: -1 and 6, 1 and -6, 2 and -3, and -2 and 3. Only the second pair, 1 and -6, sums to -5, the coefficient of the middle term, so you have

x^2-5x-6 = (x+1)(x-6)

It may turn out that none of the pairs works, which just means you can't factor it by hand. There are also cases, like x2+1, which you can't factor without using complex numbers. In both cases, the quadratic equation can help in factoring or identifying that you can't factor it without using complex numbers.

There are, obviously, more difficult cases, like higher-order polynomials and a coefficient on the x2 term that isn't equal to 1, but this should get you started.
 
Gringo123 said:
what is the process that you follow to do that?
You learn it by practice. Your textbook has surely shown you some specific methods to use, and some powerful relevant theorems. But factoring by hand is mainly exercise in manipulating expressions and to program your algebraic intuition to instantly recognize many useful facts.

Actual honest-to-goodness algorithms for factoring are generally things you would probably never want to do by hand.



In other words, your goal is to learn how to instantly recognize and apply the "easy" stuff. And pretty much every problem you are given has an "easy" solution.
 
In general, you learn to factor by doing a lot of multiplication!

For example, after you have notice that (x- 2)(x+ 2)= x^2- 2x+ 2x+ 4= x^2- 4, (a+ b)(a- b)= a^2+ ab- ab- b^2= a^2- b^2, and (x- y)(x+ y)= x^2- xy+ xy- y^2= x^2- y^2, you start to realize that multiplying a "sum and difference" always gives a "difference of squares" and so you can factor a "difference of squares" as a "product of sum and difference": x^2- 1 is the difference of x^2 and 1^2 so x^2- 1= (x- 1)(x+ 1).

More generally (x- a)(x- b)= x^2- (a+b)x+ ab so if I need to factor, say, x^2- 5x+ 6, I start looking for "a" and "b", factors of 6, which will add to 5. I would soon realize that 2(3)= 6 and 2+ 3= 5 so (-2)+ (-3)= -5 but still multiply to give 6. x^2- 5x+ 6= (x- 3)(x- 2).

Of course, if it were x^2+ 4x+ 6, I would realize that there are no integer factors of 6 which add to 2 so this cannot be factored with integer coefficients.

Normally, when we talk about "factoring" a polynomial, we mean with integer coefficients. The polynomial above can be factored with irrational and/or complex coefficients but to find the factors I would first have to solve the equation x^2+ 4x+ 6= 0 by the quadratic formula or by completing the square.
 
thanks a lot everybody. I'm getting the idea now.. slowly!
 
Back
Top