What does the notation n! mean?
n(n-1)(n-2)…1
How many ways can n objects be arranged?
n!
What does the notation ⁿCₐ mean?
n!/(a!(n-a)!)
How many ways can n objects be arranged when there’s a of one type and n-a of another?
ⁿCₐ
How is a binomially distributed variable notated?
X∼B(n,p), where n is the number of trials and p is the probability of each trial being a success
What conditions are required for a binomial distribution?
For a random variable X∼B(n,p), how can P(X=x) be calculated?
ⁿCₓpˣ(1-p)ⁿ⁻ˣ
For a random variable X∼B(n,p), how can E(X) be calculated?
np
For a random variable X∼B(n,p), how can Var(X) be calculated?
np(1-p)