Week 2 Flashcards
What do we call the Gaussian distribution if we generalise it to define a density function over continuous vectors?
Multivariate Gaussian distribution.
How do we define the multivariate Gaussian density for a vector x = [x.1, …, x.D]^T ?
p(x) = (1 / ( (2*pi)^(D/2) |SIG| ^0.5)) * exp { -0.5 * (x-mu)^T * SIG^-1 * (x-mu) }
What is the mu in the formula for the multivariate Gaussian density?
The mean, a vector of the same size as vector x.
What does the d-th element of mu tell us in the formula for multivariate Gaussian density?
The mean value of x.d
What is the form of the variance, the SIG, in the formula for multivariate Gaussian density?
a DxD covariance matrix
I^-1 ==
(identity matrix)
I
I * matrix ==
(identity matrix I)
matrix
The exp of a sum gives the same result as…
the product of exps
|A| is the … of matrix A
determinant
How do you calculate the determinant of a 2x2 matrix A:
[ a b
c d ]
|A| = ad - bc
What is |I|?
1
(2*pi)^(D/2) can be written as…
PRODUCT(d=1 to D) of (2*pi)^(1/2)
What is Tr(A) for matrix A?
the trace of a square matrix A, the sum of the diagonal elements of A
If A = I.D, so the DxD identity matrix, then Tr(I.D) =
SUM(d=1 to D) 1 = D
Tr(AB) ==
Tr(BA)