expansions Flashcards
nCr Gen
number (power) choose row. This will give you a number on pascals triangle. For example 5C3 will give you the number that is 5 levels down and 3 across. (if r is ever 0 then it will give you 1, if it is ever 1 then it will be equal to n)
nCr equation
n!/r!(n-r)!
What is a factorial? (!)
A number timesed by all lower integers going down to 1.
Eg. 4!= 432*1
how do you find nCr on calculator?
Matrix (1)
OPTN
F6
PROB
(x+y)^2
As an example of how to expand brackets.
(2C0) y^0 x^2 + (2C1) y^1 x^1 + (2C2) y^2 x^0
One factor is multiplied from an order going from 0 to n and the other does the same but going from n to 0.
What would a term be in an expanded (1-x)^2
nCr*χ^(n-r)
How do you calculate percentage error (bear with me sorry)
(100 (actual - estimate))/actual
using (1-x)^n how could you go about estimating 0.97^5?
0.97= (1-0.03)
0.97^5=(1-0.03)^5
x= -0.03
0.97^5= 5C0χ^5 + 5C1χ^4 +… 5C5χ^0
this except because its an estimate you dont have to calculate all of the terms. That’s what the percentage error is about.
What is a permutation?
What you need to know is that it’s relevant when the order matters.
Number of ways to arrange n different objects is?
n!
nPr Gen
Choose r from n when order matters (permutation).
This keeps part of a factorial eg.
4!= 4* 3 * 2 * 1
4P2= 4 * 3
nPr equation
n!/(n-r)!
how to turn nPr into nCr just in case?
divide by r!