Factoring — common factor extraction, grouping, using identities
Overview
Factoring (or factorization) is the process of breaking down a polynomial into a product of simpler polynomials. It's the reverse of expansion: instead of , we go backward: .
Why factor?
- To solve equations: or
- To simplify rational expressions:
- To reveal structure: see roots, understand behavior, integrate/differentiate more easily
Core Techniques
1. Common Factor Extraction (Distributive Property in Reverse)
Step-by-step WHY:
- Identify the GCF (Greatest Common Factor) of coefficients AND the lowest power of each variable present in all terms.
- Divide each term by the GCF.
- Write as product: GCF times the remaining polynomial.
- Coefficients:
- Variables: lowest power of across all terms is
- GCF =
Divide each term:
Result:
Why this step? Factoring out makes the remaining polynomial simpler. We can now factor further if needed.
Example 2:
- Coefficients:
- : lowest power is (from )
- : lowest power is (from )
- GCF =
Divide:
Result:
2. Factoring by Grouping
When to use: Typically with4 terms, especially after rearranging.
Why does this work? By grouping strategically, we create a common binomial factor in both groups, which we can then extract.
Group:
Factor each group:
- First group:
- Second group:
Now we have:
Common factor :
Why this step? After factoring each group, appears in both. Extracting it gives the final factorization.
Example 4:
Group:
Factor:
Result:
Example 5 (tricky grouping):
Standard grouping doesn't work (no common binomial).
Rearrange:
Group:
Factor:
Result:
Why rearrange? Grouping requires that factored pairs share a common binomial. Rearranging terms can create that structure.
3. Using Algebraic Identities
- Difference of squares:
- Perfect square trinomial (positive):
- Perfect square trinomial (negative):
- Sum of cubes:
- Difference of cubes:
Derivation of difference of squares:
Start with :
(a-b)(a+b) &= a \cdot a + a \cdot b - b \cdot a - b \cdot b \\ &= a^2 + ab - ab - b^2 \\ &= a^2 - b^2 \end{align}$$ **Derivation of sum of cubes:** We claim $a^3 + b^3 = (a+b)(a^2 - ab + b^2)$. Expand RHS: $$\begin{align} (a+b)(a^2 - ab + b^2) &= a(a^2 - ab + b^2) + b(a^2 - ab + b^2) \\ &= a^3 - a^2b + ab^2 + ba^2 - ab^2 + b^3 \\ &= a^3 + (-a^2b + ba^2) + (ab^2 - ab^2) + b^3 \\ &= a^3 + 0 + b^3 \\ &= a^3 + b^3 \quad \checkmark \end{align}$$ **Why this works:** The middle terms cancel by design. The cubic identity "completes" the factorization that naive approaches miss. --- > [!example] > **Example 6:** $x^2 - 49$ Recognize: $x^2 - 7^2$ (difference of squares, $a=x$, $b=7$) $$x^2 - 49 = (x-7)(x+7)$$ --- **Example 7:** $4y^2 - 12y + 9$ Check if perfect square: $(2y)^2 - 2(2y)(3) + 3^2$? Yes! This is $(a-b)^2$ with $a=2y$, $b=3$. $$4y^2 - 12y + 9 = (2y-3)^2$$ **Why check?** The middle term $-12y = -2(2y)(3)$ confirms the pattern. If it didn't match, we'd need a different method. --- **Example 8:** $8x^3 + 27$ Recognize: $8x^3 = (2x)^3$, $27 = 3^3$ → sum of cubes with $a=2x$, $b=3$. $$\begin{align} 8x^3 + 27 &= (2x)^3 + 3^3 \\ &= (2x+3)\left[(2x)^2 - (2x)(3) + 3^2\right] \\ &= (2x+3)(4x^2 - 6x + 9) \end{align}$$ --- **Example 9 (combining techniques):** $x^4 - 16$ First, difference of squares: $(x^2)^2 - 4^2$ $$x^4 - 16 = (x^2 - 4)(x^2 + 4)$$ But $x^2 - 4$ is also difference of squares! $$x^2 - 4 = (x-2)(x+2)$$ **Final factorization:** $$x^4 - 16 = (x-2)(x+2)(x^2+4)$$ (Note: $x^2+4$ doesn't factor further over real numbers, but $= (x-2i)(x+2i)$ over complex numbers.) **Why factor further?** Always check if factors can be factored again. Complete factorization reveals all roots. --- ![[2.1.06-Factoring-—-common-factor-extraction,-grouping,-using-identities.png]] --- ## Common Mistakes > [!mistake] > **Mistake 1:** Forgetting to factor out GCF first. **Wrong:** Factor $2x^2 + 8x + 6$ directly as... stuck! **Steel-man why this feels right:** You want to jump straight to "product of binomials" patterns. **The fix:** ALWAYS check for common factors first. $$2x^2 + 8x + 6 = 2(x^2 + 4x + 3) = 2(x+1)(x+3)$$ Missing the $2$ makes further factoring harder and leaves work incomplete. --- > [!mistake] > **Mistake 2:** Wrong signs in difference of cubes. **Wrong:** $x^3 - 8 = (x-2)(x^2 - 2x + 4)$ ... no wait, $(x-2)(x^2 + 2x + 4)$? **Steel-man:** The formulas for sum vs. difference of cubes look similar and are easy to mix up. **The fix:** Memorize with a sign pattern or re-derive: - **Difference** $a^3 - b^3 = (a-b)(a^2 \mathbf{+} ab + b^2)$ — the sign in the trinomial is **opposite** the sign in the binomial. - **Sum** $a^3 + b^3 = (a+b)(a^2 \mathbf{-} ab + b^2)$ For $x^3 - 8= x^3 - 2^3$: $$= (x-2)(x^2 + 2x + 4)$$ --- > [!mistake] > **Mistake 3:** Forcing a grouping that doesn't work. **Wrong:** $x^3 + 2x^2 + 3x + 5$, group as $(x^3+2x^2) + (3x+5) = x^2(x+2) + \text{?}(3x+5)$... no common factor. **Steel-man:** You assume all4-term polynomials factor by grouping. **The fix:** Not all polynomials factor nicely. If grouping fails after trying different pairings, the polynomial might be **prime** (irreducible) or require advanced techniques. Always verify your factorization by expanding. --- > [!mistake] > **Mistake 4:** Incorrect perfect square identification. **Wrong:** $x^2 + 9 = (x+3)^2$? Check: $(x+3)^2 = x^2 + 6x + 9 \neq x^2 + 9$. **Steel-man:** You see two perfect squares and assume it's a perfect square trinomial. **The fix:** Perfect square trinomials have **three terms**: $a^2 \pm 2ab + b^2$. The middle term $2ab$ must be present and correct. $x^2 + 9$ is actually **prime** over reals (factors as $(x-3i)(x+3i)$ over complex numbers). --- ## Active Recall > [!recall]- > Imagine explaining to a 12-year-old: "Factoring is like un-mixing a smoothie. You started with strawberies and banas blended together. Factoring finds the original ingredients. For example, $x^2 + 5x + 6$. This is a 'blended' polynomial. By factoring, we find it came from $(x+2)$ and $(x+3)$ multiplied together. Why does this help? If you want to know when the smoothie equals zero (solve $x^2+5x+6=0$), you just need *one* ingredient to be zero: $x+2=0$ or $x+3=0$. So $x=-2$ or $x=-3$. The three main tricks are: 1. **Pull out common ingredients** (like if every term has an $x$, take it out front) 2. **Group terms** into pairs that share a pattern 3. **Recognize special recipes** (like $a^2 - b^2$ always splits into $(a-b)(a+b)$) It's detective work: look at the polynomial, find the clues (common factors, patterns), and reconstruct how it was built." --- ## Mnemonics & Memory Aids > [!mnemonic] > **SOAP** for difference/sum of cubes: > - **S**ame sign (as in the original problem, for the binomial factor) > - **O**pposite sign (in the trinomial factor, middle term) > - **A**lways **P**ositive (last term of the trinomial) **Example:** $a^3 - b^3$ (negative sign) - Binomial: $(a - b)$ — **S**ame (negative) - Trinomial: $a^2 \mathbf{+} ab + b^2$ — **O**pposite (positive), last term **P**ositive **Example:** $a^3 + b^3$ (positive sign) - Binomial: $(a + b)$ — **S**ame (positive) - Trinomial: $a^2 \mathbf{-} ab + b^2$ — **O**pposite (negative), last term **P**ositive --- ## Connections - [[Distributive Property]] — factoring is the reverse - [[Polynomial Long Division]] — verifying factorizations - [[Quadratic Formula]] — when factoring fails for $ax^2+bx+c$ - [[Rational Root Theorem]] — finding roots of higher-degree polynomials - [[Zero Product Property]] — why factoring solves equations - [[Completing the Square]] — alternative to recognizing perfect square trinomials - [[Complex Numbers]] — factoring polynomials like $x^2+1$ or $x^4+4$ - [[Fundamental Theorem of Algebra]] — every polynomial factors completely (over $\mathbb{C}$) --- ## Flashcards #flashcards/maths What is factoring in algebra? :: The process of expressing a polynomial as a product of simpler polynomials (reverse of expansion). What is the first step before applying any factoring technique? ::: Always check for and factor out the greatest common factor (GCF) first. How do you factor $a^2 - b^2$? :: $(a-b)(a+b)$ (difference of squares identity). What is the factored form of $a^2 + 2ab + b^2$? ::: $(a+b)^2$ (perfect square trinomial). Factor $a^3 + b^3$ :: $(a+b)(a^2 - ab + b^2)$ (sum of cubes). Factor $a^3 - b^3$ ::: $(a-b)(a^2 + ab + b^2)$ (difference of cubes). When factoring by grouping, what must appear after factoring each group? ::: A common binomial factor that can be extracted from both groups. Factor $6x^3 - 9x^2 + 12x$ ::: $3x(2x^2 - 3x + 4)$ — GCF is $3x$. Factor $x^2 - 25$ ::: $(x-5)(x+5)$ — difference of squares. Factor $x^2 + 6x + 9$ ::: $(x+3)^2$ — perfect square trinomial ($a^2+2ab+b^2$ with $a=x$, $b=3$). Factor by grouping: $xy + 3x + 2y + 6$ ::: $(x+2)(y+3)$ — group as $(xy+3x)+(2y+6) = x(y+3)+2(y+3)$. Factor $8x^3 - 27$ ::: $(2x-3)(4x^2+6x+9)$ — difference of cubes with $a=2x$, $b=3$. Why is $x^2 + 4$ considered prime over real numbers? ::: It's a sum of squares with no middle term; it doesn't fit any real factoring pattern (factors over complex: $(x-2i)(x+2i)$). What is the SOAP mnemonic for cubes? ::: **S**ame sign in binomial, **O**pposite in trinomial middle term, **A**lways **P**ositive last term. Factor completely: $2x^3 + 8x^2 + 8x$ ::: $2x(x^2+4x+4) = 2x(x+2)^2$ — factor GCF first, then recognize perfect square. ## 🖼️ Concept Map ```mermaid flowchart TD F[Factoring polynomials] E[Expansion] T1[Common factor extraction] T2[Factoring by grouping] T3[Using identities] GCF[Find GCF] GRP[Group terms in pairs] BIN[Common binomial factor] SOLVE[Solve equations] SIMP[Simplify rationals] F -->|reverse of| E F -->|technique| T1 F -->|technique| T2 F -->|technique| T3 T1 -->|requires| GCF T2 -->|first step| GRP GRP -->|reveals| BIN BIN -->|extracted gives| T2 F -->|used to| SOLVE F -->|used to| SIMP SOLVE -->|via| BIN ``` ## 🔊 Hinglish (regional understanding) > [!intuition]- Hinglish mein samjho > Dekho, factoring matlab ek polynomial ko chhote-chhote pieces mein todna, jaise ek bade number ko prime factors mein todte hain. Jaise 12 = 2 × 2 × 3, waise hi $x^2 + 5x + 6$ ko $(x+2)(x+3)$ mein tod sakte hain. Iska main fayda yeh hai ki agar tumhe equation solve karna hai, toh factored form mein bilkul seedha answer mil jata hai —agar $(x+2)(x+3) = 0$ hai toh yaoh $x+2=0$ ya $x+3=, simple! > > Teen main techniques hain. Pehla, **common factor nikalte hain** — jaise agar har term mein $3x$ common hai toh usse bahar nikal lo. Dosra, **grouping** — jab 4 terms hain toh do-do ki jodi bana ke factor karo, phir common binomial dhundho. Tesra, **identities use karna** — kuch patterns yad rakho jaise $a^2 - b^2 = (a-b)(a+b)$ ya cubes ke formulas. SOAP trick yad rakho cubes ke liye: Same sign, Opposite sign, Always Positive. > > Common mistakesein sabse bada hai GCF nikalna bhool jana — hamesha pehle GCF check karo! Aur signs ko carefully dekho, especially difference of cubes mein. Ek baar factoring ho jaye toh verify karna mat bhoolna — wapas expand karke dekho ki original polynomial mil raha hai ki nahi. Practice se yeh patterns automatically dikh jayenge aur equations solve karna bahut fast ho jayega! ![[audio/2.1.06-Factoring-—-common-factor-extraction,-grouping,-using-identities.mp3]]