Inference Using Multivariate Normal Distribution Flashcards

1
Q

Give the pdf of a MN distribution

A

1/[2π^(p/2) |Σ|^1/2] ) * exp( -0.5(x_-mu_)^T Σ^(-1) (x_-mu_) )

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

How many parameters are there in a multivariate normal distribution?

A

1/2 * p * (p+3)

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

Give the marginal distribution of x1

A

1/[2π^(k/2) |Σ_11|^1/2] ) * exp( -0.5(x1_-mu1)^T Σ^(-1) (x_1-mu1) )

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

Give the conditional distribution of x1 given x2

A

X1|X2 ~ MN ( mu1_ + Σ12Σ22^(-1)(x2_ - mu_) , Σ22 - Σ21Σ11^(-1) Σ12

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

What does the partial correlation coefficient measure?

A

Strength of dependence between two variables given values of other variables

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

Give the formula for ρ12|3

A

(ρ12 - ρ13 * ρ23) / sqrt ( (1-ρ13^2) * (1-ρ23^2) )

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

How do you estimate ρ12|3 in terms of regression?

A

Corr ( X1 - a1X3, X2 - a2X3) = ρ12|3

a1 = σ13 / σ3^2
a2 = σ12 / σ3^2
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Give the test statistic for a one-sample Σ known test

A

H0: mu_ = mu0_

  • 2*log(λ) = n(xbar_ - mu0)^T * Σ^(-1) (xbar - mu0_)

~ X^2_r, r is difference in parameter spaces for H0 and H1

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

Give the test statistic for a one-sample, Σ unknown test

A

H0: mu_ = mu0_

T^2 = n(xbar_ - mu0)^T * S^(-1) (xbar - mu0_)

Now T^2 * (n-p) / ((n-1)*p) ~ F(p, n-p)

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

Give the test statistic for a two-sample, Σ unknown test

A

H0: mu1_ = mu2_

Find S = [(n1 - 1)S1 + (n2 - 1)S2] / (n1 + n2 - 2)

T = [n1*n2 / (n1+n2)] * (Xbar_ - Ybar_)^T * S^(-1) * (Xbar_ - Ybar_)

Now ( [n1n2(n1+n2-p-1)]/ [p(n1+n2)(n1+n2-)] ) * T ~ F(p, n1 + n2 - p - 1)

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