Factorization
Encyclopedia : F : FA : FAC : Factorization
- This article is about the mathematical concept. For the financial term see factoring (finance).
The aim of factoring is usually to reduce something to "basic building blocks", such as numbers to prime numbers, or polynomials to irreducible polynomials. Factoring integers is covered by the fundamental theorem of arithmetic and factoring polynomials by the fundamental theorem of algebra.
The opposite of factorization is expansion. This is the process of multiplying together factors to recreate the original, "expanded" polynomial.
Integer factorization for large integers appears to be a difficult problem. There is no known method to carry it out quickly. Its complexity is the basis of the assumed security of some public key cryptography algorithms, such as RSA.
A matrix can also be factorized into a product of matrices of special types, for an application in which that form is convenient. One major example of this uses an orthogonal or unitary matrix, and a triangular matrix. There are different types: QR decomposition, LQ, QL, RQ, RZ.
Another example is the factorization of a function as the composition of other functions having certain properties; for example, every function can be viewed as the composition of a surjective function with an injective function.
Factoring a quadratic polynomial
Any quadratic polynomial (polynomials in the form of [ax^2+bx+c]) can be factored into an expression with the form [ a(x - j)(x - k) \ ] using the quadratic formula. The method is as follows:
- [ ax^2 + bx + c = a(x - j)(x - k) = a\bigg(x - \bigg(\frac}\bigg)\bigg) \bigg(x - \bigg(\frac}\bigg)\bigg) ]
Quadratic polynomials can sometimes be factored into two binomials with simple integer coefficients, without the need to use the quadratic formula. In a quadratic equation, this will expose its two roots. The formula
- [ax^2+bx+c \,\!]
- [(mx+p)(nx+q) \,\!]
- [mn = a, \,]
- [pq = c, \mbox \,]
- [pn + mq = b. \,]
Take for example 2x2 − 5x + 2 = 0. Because a = 2 and mn = a, mn = 2, which means that of m and n, one is 1 and the other is 2. Now we have (2x + p)(x + q) = 0. Because c = 2 and pq = c, pq = 2, which means that of p and q, one is 1 and the other is 2 or one is −1 and the other is −2. A guess and check of substituting the 1 and 2, and −1 and −2, into p and q (while applying pn + mq = b) tells us that 2x2 − 5x + 2 = 0 factors into (2x − 1)(x − 2) = 0, giving us the roots x =
Perfect square trinomials
Some quadratics can be factored into two identical binomials. These quadratics are called perfect square trinomials. Perfect square trinomials can be factored as follows:- [ a^2 + 2ab + b^2 = (a + b)^2\,\!]
- [ a^2 - 2ab + b^2 = (a - b)^2\,\!]
Table method
The table method is less used method that involves creating a multiplication table. This method is very decisive and can be much faster than other algorithms once the rules surrounding the method are mastered.
To factor the polynomial ax2 + bx + c:
- place the value of a in the top-left of the table and the last term (c) in the bottom-right box,
- find two factors of a × c that add up to b and place those factors in the top-right and bottom-left boxes,
- find the greatest common factor (GCF) of each adjacent pair
| a | j | A = GCF(a,j) | |
| k | c | B = GCF(k,c) | |
| C = GCF(a,k) | D = GCF(j,c) |
The GCFs comprise the final factors of the quadratic in this way:
- one factor is (Ax + B) if k is positive, or (Ax − B) if k is negative, and
- the other factor is (Cx + D) if j is positive, or (Cx − D) if j is negative.
Example
For example, to factor 6x2 − 17x + 12, first multiply 6x2 × 12 to get 72x2. Then find two factors of 72 that add up to -17 (such as −9 and −8).In the table, place the a value in the top-left and the last term (c) in the bottom-right box. Fit the -9 and -8 in the remaining boxes. Then find the GCF up and down and side to side for each row for the answer.
| 6 | -8 | 2 | |
| -9 | 12 | 3 | |
| 3 | 4 |
The final answer is (3x − 4)(2x − 3).
Sum/difference of two squares
Another common type of algebraic factoring is called the difference of two squares. It is the application of the formula
- [ a^2 - b^2 = (a+b)(a-b) \,\!]
- [ a^2 + b^2 = (a+bi)(a-bi) \,\!]
Sum/difference of two cubes
Another less-used but still common formula for factoring is the sum or difference of two cubes. The sum can be represented by- [ a^3 + b^3 = (a + b)(a^2 - ab + b^2)\,\!]
- [ a^3 - b^3 = (a - b)(a^2 + ab + b^2)\,\!]
In general, the difference of any two numbers raised to the same (positive integer) power
- [ a^n - b^n\,\!]
- [ a^n + b^n\,\!]
Factoring by grouping
Another way to factor some equations is factoring by grouping. This is done by placing the terms in an expression into two or more groups, where each group can be factored by a known method. The results of these factorizations can sometimes be combined to make an even more simplified expression.For example, suppose you had the expression
- [4x^3\sin^2x-312x^2\sin^2x+4620x\sin^2x-8024\sin^2x-3x^3+234x^2-3465x+6018 \,]
- [(4x^3\sin^2x-312x^2\sin^2x+4620x\sin^2x-8024\sin^2x)-(3x^3-234x^2+3465x-6018) \,]
- [4\sin^2x(x^3-78x^2+1155x-2006) - 3(x^3-78x^2+1155x-2006) \,]
- [(4\sin^2x -3)(x^3-78x^2+1155x-2006) \,]
- [(4\sin^2x -3)(x-59)(x-17)(x-2) \,]
Prime factorization of an integer
By the fundamental theorem of arithmetic, every positive integer has a unique prime factorization. Given an algorithm for integer factorization, one can factor any integer down to its constituent primes by repeated application of this algorithm. For very large numbers, no efficient algorithm is known. For smaller numbers, however, there are a variety of different algorithms that can be applied.
- See also: Prime factorization algorithms
Factoring in mathematical logic
In mathematical logic and automated theorem proving, factoring is the technique of deriving a single, more specific atom from a disjunction of two more general unifiable atoms. For example, from ∀ X, Y : P(X, a) or P(b, Y) we can derive P(b, a).
See also
- Integer factorization
- Prime factorization algorithm
- Program synthesis
- Matrix decomposition
- Unique factorization
- Polynomial expansion, the opposite of factorization
- Factor group
- Factor ring
External links
- [A page about factorization, Algebra, Factoring]
- [WIMS Factoris] is an online factorization tool.
- [Polynomial Factoring] is a comprehensive tutorial resource on basic factoring of polynomials.
- [Interactive Factorization Problems by Elias Saab]
From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.
