Distributions Flashcards

1
Q

What is the Bernoulli distribution?

A

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)

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

What is the Binomial distribution?

A

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)

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

What is the Discrete Uniform distribution?

A

pmf: P(X = x|N) = 1/N where x = 1, 2, …, N

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

What is the Geometric distribution?

A

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)

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

What is the Poisson distribution?

A

pmf of Poisson(λ) is P(X = x|λ) = (eλx)/x! gives the probability of x occurrences of an independent outcome with mean rate of λ

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

What are the higher moments of the Normal distribution?

A

Skewness = 0
Kurtosis = 3

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

What is a moment?

A

A calculated (not observed) feature of a distribution

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

What is the first moment of a data set?

A

The mean or expected value

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

What is the expectation for a discrete random variable?

A

E(X) = ΣxiP(X = xi)

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

What is the expectation for a continuous random variable?

A

E(X) = ∫-infinfxf(x)dx

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

What is the difference between a sample statistic and a population moment?

A

The former is a random variable, the latter is not, e.g. X̄ is a random variable but E(X) is not

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

What is the expectation of rv X with pdf f when some function g is applied to it?

A

E(g(X)) = ∫-infinfg(x)f(x)dx

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

What are non central and central moments?

A

E(Xk) is the kth non central moment of X, denoted μk
E((X - μ)k) is the kth central moment of X, denoted μk

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

What is the variance of a random variable X as a moment?

A

The second central moment
Var(X) = σX2 = ∫-infinf(x - μ)2f(x)dx = E((X - E(X))2)

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

What is the variance of the Bernoulli distribution?

A

Var(X) = p(1 - p)

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

What is the covariance of two variables?

A

Cov(X, Y) = E[(X - E(X))(Y - E(Y))] = ∫YX(x - μX)(y - μYf(x, y)dxdy = E(XY) - E(X)E(Y)
‘Calculating the expected value of the product of the deviations of X and Y from their means, weighted by the joint pdf’

17
Q

What is the population correlation coefficient?

A

ρ = Corr(X, Y) = Cov(X, Y) / sqrt(Var(X)Var(Y))

18
Q

What does the independence of two variables say about their covariance?

A

Independence implies a covariance of 0 but a covariance of 0 does not imply independence

19
Q

What are the rules of expectation and variance for random variables?

A

For rvs X, Y and constants a, b
E(a) = a, E(a + bX) = a + bE(X), E(aX + bY) = aE(X) + bE(Y)
Var(a) = 0, Var(a + bX) = b2Var(X), Var(aX + bY) = a2Var(X) + b2Var(Y) + 2abCov(X, Y) (last term equals 0 for independent variables)

20
Q

What does a confidence interval tell you?

A

The likelihood of a moment falling within a certain range

21
Q

What are the 90% and 95% confidence intervals for a realisation of the standard normal distribution?

A

90%: [-1.645, 1.645]
95%: [-1.96, 1.96]

22
Q

How do you go from any normal distribution to the standard normal distribution?

A

P(X < a) = P((X - μ)/σ < (a - μ)/σ) = P(Z < (a - μ)/σ)