Expansion of common powers

Expansion of common powers

Pascal’s triangle

The coefficients in the expansions above correspond to the rows of Pascal’s triangle:

row |
  0 |              1
  1 |            1   1
  2 |          1   2   1
  3 |        1   3   3   1
  4 |      1   4   6   4   1
  5 |    1   5  10  10   5   1
  6 |  1   6  15  20  15   6   1
       ^                   ^
       |_ column 0         |_ column 5

We can write the the coefficient at row r and column c as ^rC_c.

Finding specific terms using a calculator

If we want to find the coefficient of the b^3 term of the expansion of (a+b)^6, we can solve:

^6C_3=20

Finding a specific term using factorials

If we want to find ^nC_r, we can also use this formula:

^nC_r = \frac{n!}{r!(n-r)!}

Finding all the coefficients

(a+b)^n = {^nC_0 a^n b^0} + {^nC_1 a^{n-1} b^1} + {^nC_2 a^{n-2} b^2} + ... + {^nC_n a^0 b^n}

Expand (2+x)^4

Expand (1+2x)^6

Representing the number of combinations

We can write the number of combinations of choosing r items from a list of n items as either ^nC_r or \begin{pmatrix}n\\r\end{pmatrix}.

Common combinations

\begin{pmatrix}n\\0\end{pmatrix}=\begin{pmatrix}n\\n\end{pmatrix}=1

\begin{pmatrix}n\\1\end{pmatrix}=\begin{pmatrix}n\\n-1\end{pmatrix}=n