continuous random var Flashcards
(9 cards)
gaussian integral
integral from -inf to +inf of e^(-x^2) = sqrt(PI)
p.d.f of standard normal distribution of random variable Z
fz(z) = 1/(sqrt(2PI))e^(-z^2/2)
expectation and variance of standard normal distribution
E(Z) = 0 Var(Z) = 1
the cumulative distribution function of N(0,1)
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)
p.d.f of random variable X which has normal distribution with mean a and variance b^2
fx(x) = 1/(sqrt(2pib^2))e^(-(x-a)^2/2b^2)
define general normal variable X in terms of normal random variable Z
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
normal distribution in Matlab
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)
the mean of vector X = (X1, X2, …, Xn)^T
a = (E(X1), E(X2),…,E(Xn))
P.D.F of random variable X with mean a and covariance matrix Σ which has a multivariate normal distribution is
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 Σ