continuous random var Flashcards

(9 cards)

1
Q

gaussian integral

A

integral from -inf to +inf of e^(-x^2) = sqrt(PI)

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

p.d.f of standard normal distribution of random variable Z

A

fz(z) = 1/(sqrt(2PI))e^(-z^2/2)

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

expectation and variance of standard normal distribution

A
E(Z) = 0
Var(Z) = 1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

the cumulative distribution function of N(0,1)

A

Fz(z) = integral from -inf to z of 1/(sqrt(2pi))e^(-t^2/2)dt

the notation Φ is commonly used to represent c.d.f and φ to represent p.d.f

there is a relationship between Φ(z) and Φ(-z)
Φ(-z) = 1 - Φ(z)

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

p.d.f of random variable X which has normal distribution with mean a and variance b^2

A

fx(x) = 1/(sqrt(2pib^2))e^(-(x-a)^2/2b^2)

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

define general normal variable X in terms of normal random variable Z

A

X = a + b*Z,
E(X) = a
Var(X) = b^2
we refer to transforming X to get a standard N(0,1) random variable as standardising X

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

normal distribution in Matlab

A

p.d.f. - normpdf(x,mu, sigma)
c.d.f. - normcdf(x,mu, sigma)
invert c.d.f. to find alfa quantile: norming(alfa, mu, sigma)

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

the mean of vector X = (X1, X2, …, Xn)^T

A

a = (E(X1), E(X2),…,E(Xn))

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

P.D.F of random variable X with mean a and covariance matrix Σ which has a multivariate normal distribution is

A

fx(x1, x2, …, xn) = 1/(sqrt((2pi)^k|Σ|))e^(-(X-a)^TΣ^-1*(X-a)/2)
where k is a real k-dimension column vector and |Σ| is the determinant of Σ

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