Miscellaneous

Estimating Mean and Variance

Cholesky Factorization

The Cholesky factorization is a factorization of a square matrix A = LL^T where L is a lower-triangular matrix.

lemma: If A is positive definite symmetric then a lower triangular matrix L exists such that A = LL^T and is unique modulo sign.

Simulating Random Vectors with Matched Variance

It is frequently the case that sequences of correlated sequences of random numbers need to be generated in simulations. Let X be a row vector of zero-mean random variables with variance Σ=EXXT. Assuming the variance is positive definite, by the Cholesky factorization there is a lower triangular matrix L such that Σ=LLT. Let Ybe a row vector of iid zero-mean unit-variance random variables. Define Z=LY . Then E[ZZT]=E[LY(LY)T]=LE[YYT]LT=LLT=Σ and so Z and Y have identical mean and variance.

Navigation

About

Raedwulf ….