Distributions Flashcards
What is the Bernoulli distribution?
Bernoulli(p) has pmf P(X = x|p) = px(1-p)(1-x) where x is (usually) 0, 1 to denote two possible outcomes (success and failure)
What is the Binomial distribution?
Binomial(n, p) gives the probability of x successes in n independent Bernoulli trials
pmf: P(X = x|n, p) = nCx * px(1-p)(n-x)
What is the Discrete Uniform distribution?
pmf: P(X = x|N) = 1/N where x = 1, 2, …, N
What is the Geometric distribution?
pmf P(X = x|p) = p(1-p)x-1 with x = 1, 2, … gives the probability of observing the first success after x independent Bernoulli trials (x - 1 fails and then a success)
What is the Poisson distribution?
pmf of Poisson(λ) is P(X = x|λ) = (e-λλx)/x! gives the probability of x occurrences of an independent outcome with mean rate of λ
What are the higher moments of the Normal distribution?
Skewness = 0
Kurtosis = 3
What is a moment?
A calculated (not observed) feature of a distribution
What is the first moment of a data set?
The mean or expected value
What is the expectation for a discrete random variable?
E(X) = ΣxiP(X = xi)
What is the expectation for a continuous random variable?
E(X) = ∫-infinfxf(x)dx
What is the difference between a sample statistic and a population moment?
The former is a random variable, the latter is not, e.g. X̄ is a random variable but E(X) is not
What is the expectation of rv X with pdf f when some function g is applied to it?
E(g(X)) = ∫-infinfg(x)f(x)dx
What are non central and central moments?
E(Xk) is the kth non central moment of X, denoted μk’
E((X - μ)k) is the kth central moment of X, denoted μk
What is the variance of a random variable X as a moment?
The second central moment
Var(X) = σX2 = ∫-infinf(x - μ)2f(x)dx = E((X - E(X))2)
What is the variance of the Bernoulli distribution?
Var(X) = p(1 - p)