What is the formula for the least squares solution of x, where x is the least squares solution?
AtAx = Atb
How is QR factorisation used to solve the least squares method?
Rx = Qtb
Why does QR factorisation help with the least squares method?
Because R is upper triangular, back substitution is possible, making Rx = Qtb easy to solve.