Problem 1 — Identify and Extract the GCF (C1)
Variant 0 — Factor \( 6x^3 + 9x^2 \)
GCF: \( \gcd(6,9) = 3 \); lowest power of \( x \) in both terms is \( x^2 \). So GCF \( = 3x^2 \).
Factored form: \( 3x^2(2x + 3) \).
Verify: \( 3x^2 \cdot 2x = 6x^3 \) ✓ and \( 3x^2 \cdot 3 = 9x^2 \) ✓
Variant 1 — Factor \( 8x^4 - 12x^2 \)
GCF: \( \gcd(8,12) = 4 \); lowest power of \( x \) is \( x^2 \). So GCF \( = 4x^2 \).
Factored form: \( 4x^2(2x^2 - 3) \).
Verify: \( 4x^2 \cdot 2x^2 = 8x^4 \) ✓ and \( 4x^2 \cdot 3 = 12x^2 \) ✓
Variant 2 — Factor \( 15x^3 - 10x \)
GCF: \( \gcd(15,10) = 5 \); lowest power of \( x \) is \( x^1 \) (from \( -10x \)). So GCF \( = 5x \).
Factored form: \( 5x(3x^2 - 2) \).
Verify: \( 5x \cdot 3x^2 = 15x^3 \) ✓ and \( 5x \cdot 2 = 10x \) ✓
Variant 3 — Factor \( 4x^3 + 6x^2 - 2x \)
GCF: \( \gcd(4,6,2) = 2 \); lowest power of \( x \) is \( x^1 \) (from \( -2x \)). So GCF \( = 2x \).
Factored form: \( 2x(2x^2 + 3x - 1) \).
Verify: \( 2x \cdot 2x^2 = 4x^3 \) ✓, \( 2x \cdot 3x = 6x^2 \) ✓, \( 2x \cdot 1 = 2x \) ✓
Note: \( 2x^2 + 3x - 1 \) does not factor over \( \mathbb{Z} \) (discriminant \( = 9 + 8 = 17 \)), so this is the final answer.
Variant 4 — Factor \( 12x^5 - 8x^3 + 4x^2 \)
GCF: \( \gcd(12,8,4) = 4 \); lowest power of \( x \) is \( x^2 \) (from \( 4x^2 \)). So GCF \( = 4x^2 \).
Factored form: \( 4x^2(3x^3 - 2x + 1) \).
Verify: \( 4x^2 \cdot 3x^3 = 12x^5 \) ✓, \( 4x^2 \cdot 2x = 8x^3 \) ✓, \( 4x^2 \cdot 1 = 4x^2 \) ✓
Problem 2 — Choose the Correct Technique (C1–C5)
Expression A: \( x^2 - 81 \) → Difference of Squares
\( x^2 - 81 = x^2 - 9^2 = (x-9)(x+9) \). Both terms are perfect squares with a minus sign between them.
Expression B: \( x^2 + 9x + 14 \) → Quadratic Trinomial (Product-Sum)
Find \( p, q \) with \( pq = 14 \) and \( p + q = 9 \). Try \( (2, 7) \): \( 2 \cdot 7 = 14 \) ✓, \( 2 + 7 = 9 \) ✓. Answer: \( (x+2)(x+7) \).
Expression C: \( x^3 - 3x^2 + 2x - 6 \) → Factoring by Grouping
Group: \( (x^3 - 3x^2) + (2x - 6) = x^2(x-3) + 2(x-3) = (x^2+2)(x-3) \).
Note: \( x^2 + 2 \) is a sum of squares — it cannot be factored further over \( \mathbb{R} \).
Expression D: \( 9x^2 + 16 \) → Cannot be factored over ℝ
This is a sum of squares \( (3x)^2 + 4^2 \). The sum of squares \( a^2 + b^2 \) has no real factorization. (Factoring would require the complex number \( i \).)
Problem 3 — Factor a Difference of Squares (C3)
Variant 0 — Factor \( x^2 - 9 \)
\( x^2 - 9 = x^2 - 3^2 = (x-3)(x+3) \)
Variant 1 — Factor \( 4x^2 - 25 \)
\( 4x^2 - 25 = (2x)^2 - 5^2 = (2x-5)(2x+5) \)
Variant 2 — Factor \( x^4 - 1 \) completely
First application: \( x^4 - 1 = (x^2)^2 - 1^2 = (x^2-1)(x^2+1) \)
Second application on \( x^2 - 1 \): \( x^2 - 1 = (x-1)(x+1) \)
\( x^2 + 1 \) is a sum of squares — does not factor over \( \mathbb{R} \).
Final answer: \( (x-1)(x+1)(x^2+1) \)
Variant 3 — Factor \( 9x^2 - 4y^2 \)
\( 9x^2 - 4y^2 = (3x)^2 - (2y)^2 = (3x-2y)(3x+2y) \)
Variant 4 — Factor \( x^2 - \tfrac14 \)
\( x^2 - \tfrac{1}{4} = x^2 - \left(\tfrac{1}{2}\right)^2 = \left(x - \tfrac{1}{2}\right)\left(x + \tfrac{1}{2}\right) \)
Problem 4 — Factor \( 6x^2 - 7x - 3 \) Step by Step (C4)
Step 1 — Compute \( ac \): \( a = 6 \), \( c = -3 \), so \( ac = 6 \cdot (-3) = -18 \).
Step 2 — Find \( p, q \) with \( pq = -18 \) and \( p + q = -7 \):
Systematically check pairs: \( (1,-18): 1+(-18)=-17 \) ✗; \( (-1,18): -1+18=17 \) ✗; \( (2,-9): 2+(-9)=-7 \) ✓. Use \( p=2 \), \( q=-9 \).
Step 3 — Split the middle term and factor by grouping:
\[ 6x^2 + 2x - 9x - 3 = 2x(3x+1) - 3(3x+1) = (2x-3)(3x+1) \]
Check: \( (2x-3)(3x+1) = 6x^2 + 2x - 9x - 3 = 6x^2 - 7x - 3 \) ✓