Rod and Pegboard
Suppose you have a bunch of pegs scattered around on a wall, like this:
You see a general trend, and you want to take a rod and use it to go through the points in the best possible way, like this:
How do you decide which way is best? Here is a physical solution.
To each peg you attach a spring of zero rest length. You then attach the other side of the spring to the rod. Make sure the springs are all constrained to be vertical.
Now let the rod go. If most of the points are below it, the springs on the bottom will be longer, exert more force, and pull the rod down. Similarly, if the rod’s slope is shallower than that of trend in the points, the rod will be torqued up to a steeper slope. The final resting place of the rod is one sort of estimate of the best straight-line approximation of the pegs.
To see mathematically what this system does, remember that the energy stored in a spring of zero rest length is the square of its length. The system finds a stable static equilibrium, so it is at a minimum of potential energy. Thus, this best-fit line is the line that minimizes the squares of the lengths of the springs, or minimizes the squares of the residuals, as they’re called.
This picture lets us find a formula for the least-squares line. To be in equilibrium, the rod must have no force on it. The force exerted by a spring is proportional to its length, so the lengths of all the springs must add to zero. (We count length as negative if the spring is above the rod and positive otherwise.)
Mathematically, we’ll write the points as and the line as
. Then the no-net-force condition is written
There must also be no net torque on the rod. The torque exerted by a spring (relative to the origin) is its length multiplied by its . That means
These two equation determine the unknowns and
. The reader will undoubtedly be unable to stop themselves from completing the algebra, finding that if there are
data points
These formulas clearly contain some averages. Let’s denote and similarly for
and combination of the two. Then we can rewrite the formulae as
This is called a least-squares linear regression.
Variance
The story about the rod and minimizing potential energy is not the really the reason we use least-squares regression; it was only convenient illustration. Students are often curious why we do not, for example, minimize the sum of the absolute values of the residuals.
Take a look at the value from the expression for the least-squares regression. This is called the variance of
. It’s a very natural measure of the spread of
– more so than the one you’d get by adding up the absolute values of the errors.
Suppose you have two variables, and
. Then
The reader is no doubt currently wearing a pencil down to the nub showing this.
If and
are independent, the last two terms cancel (down to the nub!), and we have
In practical terms: flip a coin once and the number of heads has a variance of .25. Flip it a hundred times and the variance is 25, etc. This linearity property does not hold for absolute values.
So variance is a very natural measure of variation. Simple linear regression is nice, then, because it
- makes the mean residual zero
- minimizes the variance of the residuals
The Distance Formula
The distance of a point
from the origin is
In three dimensions, this becomes
The generalization to dimensions is clear.
If we imagine the residual as coordinates of a point in -dimensional space, the simple linear regression is the line that brings that point in as close to the origin as possible, another cute visualization.
Further Reading
The physical analogy to springs and minimum energy comes from Mark Levi’s book The Mathematical Mechanic. Amazon Google Books
The Wikipedia articles on linear regression and simple linear regression are good.
There’s much mathematical insight to be had at Math.Stackexchange, Stats.StackExchange and MathOverflow
Tags: data analysis, least squares, linear regression, statistics, variance


Leave a Reply