Linear least squares#
Linear least squares refers to the problem of minimizing
where
We’ll follow the analysis of Numerical Recipes with some small changes in notation. Write out
At this point it is useful to define the design matrix
and also the vector
Then we have
So in matrix form, we have
These are known as the normal equations for the linear least squares problem.
We’ve assumed here that the noise is uncorrelated between measurements (the noise on one measurement does not depend on the noise on a previous measurement). The normal equations can be generalized to include correlated noise, but we’ll leave this for later and for now focus on how we can solve these equations.
Exercise:
Show that