Table of Contents

Common Factorizations

Beyond simple distribution.

Difference of Squares

$(a^2 - b^2) = (a + b)(a - b)$

Sum of Squares

$(a^2 + b^2) = (a + bi)(a - bi)$

Sum/Difference of Cubes

$(a^3 + b^3) = (a + b)(a^2 - |ab| + b^2)$

$(a^3 - b^3) = (a - b)(a^2 + |ab| + b^2)$

An easy way to remember the difference is it goes sign → same sign → swap sign for quadratic.

Square of the Sum of Two Numbers

$(x + y)^2 = x^2 + 2xy + y^2$

Square of the Difference of Two Numbers

$(x - y)^2 = x^2 - 2xy + y^2$

Perfect Square Trinomial

$x^2 + bx + c = (x + \frac{b}{2})^2$ where $ \sqrt{c} = \frac{b}{2}$

Grouping

This one is a bit difficult to describe, so an example would do best.

  1. $x^3 - 3x^2 - x + 3$ example quadratic
  2. $x^3 - 3x^2$ plus $-x + 3$ group terms with common factors
  3. $x^2(x - 3)$ plus $-1(x - 3)$ reverse distribute common factors
  4. $(x^2 - 1)(x - 3)$ reverse distribute the common group1)
1)
Remember that the equation really looks like $x^2(x - 3) + -1(x - 3)$, if you get confused by how there is a common factor between the groups