How is Pascal’s triangle formed?
It is formed by adding adjacent pairs of numbers to find the numbers on the next row.
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
What is the row of Pascal’s triangle that gives you the correct coefficients in the expansion of (a + b)n ?
It is the (n + 1)th row.
1st row (a + b)0
2nd row (a + b)1
3rd row (a + b)2
…
What is n! equal to?
n x (n - 1) x (n - 2) x (n - 3) x … x 1.
so 6! = 6 x 5 x 4 x 3 x 2 x 1
What are the two forms of factorial notation?
nCr and
( n )
( r )
They both mean:
n
r! (n - r)!
What is the general term in the binomial expansion of (a + b)n?
nCr an - r br
How do you use the binomial expansion to estimate a value? Example: Use the binomial expansion of (1 - x/4)10 to estimate the value of 0.97510?