Exercise 4.4.19

Answers

If A = QR then A T A = R T Q T QR = R T R = lower triangular times upper triangular (this Cholesky factorization of A T A uses the same R as Gram-Schmidt!). The example has

A = [ 1 1 2 1 2 4 ] = 1 3 [ 1 2 2 1 2 2 ] [ 3 3 0 3 ] = QR

and the same R appears in

A T A = [ 9 9 9 18 ] = [ 3 0 3 3 ] [ 3 3 0 3 ] = R T R .

User profile picture
2023-09-14 08:27
Comments