Module 9: Important Discrete Random Variables Flashcards

1
Q

whats a bernoulli random variable?

A

a single experiment is performed. It results in success with probability p, 0 < p < 1, and failure otherwise. X defined as the number of successes is called the Bernoulli random variable (with parameter p) and satisfies:

p(x) = p^x * (1-p)^(1-x), x = 0, 1

E(X) = p and Var(X) = p(1-p)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is the linearity of expectation and variance for independent random variables?

A

E(Y_1 + Y_2) = E(Y_1) + E(Y_2)
Var(Y_1 + Y_2) = Var(Y_1) + Var(Y_2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

whats the taylor series def for e^x?

A

e^x = SUM((x^n)/n!) from n=0 to infinity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is the binomial random variable?

A

there are n independent Bernoulli experiments are performed, each resulting in success with a fixed probability p, 0 < p < 1. X defined as a the number of successes in in the n trails is called the binomial random variable (with parameters n,p) and satisfies:

p(x) = c(n,x) * p^x * (1-p)^n-x, x = 0, 1, 2, … , n

E(X) = np
Var(X) = np(1 - p)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is the Poisson Random Variable?

A

n independent Bernoulli experiments are performed, each resulting in success with a fixed probability p, 0 < p < 1. X defined as the number of successes in the n trails is binomial and can be approximated by the Poisson random variable with parameter λ = np > 0 when n is large enough and p is small enough to make λ moderate. A possion random variable has the following features:

p(x) = (λ^x)/x! * e^-λ, x = 0,1,2,…

E(X) = λ and Var(X) = λ

Note that λ = np should be interpreted as the average number of successes per unit time of space.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly