12 - IID, Bernoulli, Poisson Flashcards
iid
sequence of random variables observed are independent of one another, and they are all realizations from the same identical underlying distribution
Ex. a sequence of coin tosses with the same coin, a sequence of rolls with the same die
If the sequence of iid random variables is:
{X1, X2…Xn},
E(X1 + X2 + … + Xn) =
Var(X1 + X2 + … + Xn) =
sd(X1 + X2 + … + Xn) =
E = nµx
Var = nσ2x
sd = sqr(n)*σx
The SD of the sum of the iid random variables is ___ times the standard deviation of one of them.
(the multiplier is___, not ___)
sqr(n)
(the multiplier is sqr(n), not n)
Sample Mean
Xbar
the sum multiplied by the constant 1/n
arithmetic average of sample values
E(Xbar)
Var(Xbar)
sd(Xbar)
Sample Mean (Xbar)
E(Xbar) = µx
Var(Xbar) = σ2x/n
sd(Xbar) = σx/n
The more observations that go into the sample mean (n increases), the less variable the sample mean becomes
Bernoulli random variable
any random variable with a dichotomous outcome
takes on one of 2 values (either a 0 or a 1)
Ex. buy/don’t buy
live/die
market goes up/market goes down
E(B)
Var(B)
sd(B)
Bernoulli random variable
E(B) = p
Var(B) = p(1-p)
sd(B) = sqr[p(1-p)]
*p is the probability that P(B=1)*
Binomial random variable
of successes in n iid Bernoulli trials
Y = B1 + B2+…+ B100
the sum of n, iid Bernoulli trials with success probability p
Y ~ Bi(n, p)
E(Y)
Var(Y)
sd(Y)
E(Y) = np
Var(Y) = np(1-p)
sd(Y) = sqr[np(1-p)]
Bbar
sample mean of the Bernoulli
Bbar = Y/n
proportion of successes → in special case of 0/1 outcome variables, the mean has an interpretation as the proportion of 1’s
E(Bbar)
Var(Bbar)
sdBbar)
E(Bbar) = p
Var(Bbar) = [p(1-p)]/n
sd(Bbar) = sqr[(p(1-p))/n]
interpret Bi(10, 0.5)
if 10 trials with 0.5 probability for each event
Probability distribution for Binomial random variables
- binomial random variable can only take on whole number values ranging from 0 to n
- prob distribution is centered around its mean
- prob distribution is very close to bell-shaped
Ex. if p=0.10, what is P(Y=100)?
0.1100
Binomial probability function
p(Y=y) = nCypy(1-p)n-y
where y = 0, 1,…, n
Ex. probability of getting exactly 2 heads when you toss a fair coin 5 times.
Y ~ Bi(5, 0.5)
p(Y=2) = 5C2 * .52 * (1-.5)5-2 = .3125