Factorisation
Terminology
Factorisation: $ab + ac \to a(b + c)$
Expansion: $a(b + c) \to ab + ac$
Polynomial: $a_nx^n + a_{n-1}x^{n-1} + ... + a_2x^2 + a_1x + a_0$
Formulas
$a(c + d) + b(c + d) = (a + b)(c + d)$
$a^2 \pm 2ab + b^2 = (a \pm b)^2$
$a^2 - b^2 = (a + b)(a – b)$
$a^3 \pm b^3 = (a \pm b)( a^2 \mp ab + b^2 )$
$ac + ad \pm bc \pm bd = (a \pm b)(c + d)$
Quadratic formula
If $ax^2 + bx + c = 0$ then
Cardano's formula
If $x^3 + px + q = 0$ then
Quadratic factorisation
$ax^2 + bx + c = 0 \to (px + q)(rx + s) = 0$
By inspection
- Find factors of $a$ and $c$
- With possible factors as $a = pr$ and $c = qs$, attempt combinations of their factors such that $b = ps + qr$
Only works for rational roots (i.e. $p$,$q$,$r$,$s$ integers)
Example
With factors as
| Factors of $6$ | Factors of $20$ |
|---|---|
| $1\times 6$ | $1\times 20$ |
| $2\times 3$ | $2\times 10$ |
| $4\times 5$ |
After some attempts, we can find $b = -7 = - (3\times 5) + (2\times 4)$
Which leads to a solution of
Completing the square
Turn quadratic equation into the algebraic identity
by starting with a quadratic equation in standard form, $ax^2 + bx + c = 0$:
- Divide each side by $a$, the coefficient of the squared term.
- Subtract the constant $c/a$ from both sides.
- Add the square of half the coefficient of $x$ to both sides (i.e. $(b/2a)^2$).
- Write the left side as a square.
- Square root both sides, creating two linear equations for the positive and negative roots.
This method can be used to derive the quadratic formula by applying it to the general case.