Least Squares Fitting¶
This note is more for myself than for anyone else. I have derived the expression for the least squares fitting so many times it’s not funny. The problem is, once I cobble together the routine to perform the fitting, I completely forget how to do it again. I hope, this will prevent me from having to do it ever again if only because it is on my website.
Note
This post was originally focused on using Jekyll to generate this website. I have since moved to using Pandoc which does not require explicitly embedding the JavaScript code, but you must include one of the command line options to render the math. The syntax of the raw text has been updated but not the content.
This post also gives me a chance to try out MathJax. After a Google search, I came across these instructions. Apparently, we simply need to add:
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
to the layout. However, I don’t really want it in every page. So, I
just put it at the top of this source. Oh while I’m at it, make sure
you spell javascript
right. If you don’t you could spend a few
hours wondering what went wrong like I did when I spelled it
javascrpit
.
We begin with a set of function of the independent variable \(\{x_i\}\) and dependent variables \(\{y_i\}\). We then select a collection of functions to relate the two
Now, we minimize the squared error
or in matrix form
which can be readily solved for the coefficients \(\{a_j\}\).
See, I told you that this was simple. Now to put this online and see how the math looks.
A few pointers:
You must escape the backslashes in entering the math mode
\\( … \\)
and\\[ … \\]
.The dollar sign version
$$ … $$
appears to work as inline math withkramdown
.The
\sum_j
construct with no limits on the sum does not like with the index is inside{}
unless you escape with a backslash (maybe. I didn’t actually test that).