Quiz: LU and Cholesky Factorisation
Module 2 of 5 · Medium
Quick Quiz
1. The Cholesky factorisation exists if and only if satisfies which condition?
2. Given covariance with and , the Cholesky factor satisfies
3. To generate correlated samples using Cholesky , the correct procedure is:
4. Compared to LU factorisation, Cholesky factorisation for an SPD matrix requires approximately how many floating-point operations?
5. You call `numpy.linalg.cholesky(Sigma)` and receive `LinAlgError: Matrix is not positive definite`. The most informative diagnostic step is:
6. A yield curve bootstrapping problem has been factorised as . A trader requests 200 different rate scenarios, each requiring a new right-hand side . What is the correct computational strategy?
7. A covariance matrix estimated from daily returns on assets is passed to Cholesky. What should you expect?
8. On a rates desk, a quantitative developer proposes solving the curve bootstrapping system with `x = inv(A) @ b`. A senior quant objects. The strongest objection is: