Econometric Theory/Ordinary Least Squares (OLS)
Ordinary Least Squares or OLS is one of the simplest (if you can call it so) methods of linear regression. The goal of OLS is to closely "fit" a function with the data. It does so by minimizing the sum of squared errors from the data.
[edit] Why we Square Errors before Summing
We are not trying to minimize the sum of absolute errors, but rather the sum of squared errors. Let's take a brief look at our sweater story again.
| model | data point | error from line |
|---|---|---|
| A | 1 | 5 |
| A | 2 | 10 |
| A | 3 | -5 |
| A | 4 | -10 |
| B | 1 | 3 |
| B | 2 | -3 |
| B | 3 | 3 |
| B | 4 | -3 |
Notice that the Sum of Model A is 5 + 10 − 5 − 10 = 0 and that the Sum of Model B is 3 − 3 + 3 − 3 = 0
Both Models sum to 0 and both are great fits! NO!!
So to account for the signs, whenever we sum errors, we square the terms first.
[edit] The Model
These two models each have an intercept term α, and a slope term β (some textbooks use β0 instead of α and β1 instead of β, this is a much better approach once we move to multivariate formulas). We can represent an arbitrary single variable model with the formula: yi = α + βxi + ui The y-values are related to the x-values given this formula. We use the subscript i to denote an observation. So y1 is paired with x1, y2 with x2, etc. The ut term is the error term, which is the difference between the effect of xi and the observed value of yi.
Unfortunately, we don't know the values of α,β or ut. We have to approximate them. We can do this by using the ordinary least squares method. The term "least squares" means that we are trying to minimize the sum of squares, or more specifically we are trying to minimize the squared error terms. Since there are two variables that we need to minimize with respect to (α and β), we have two equations:



Call the solutions to these equations
and
. Solving we get:


Where
and
. Computing these results can be left as an exercise.
It is important to know that
and
are not the same as α and β because they are based on a single sample rather than the entire population. If you took a different sample, you would get different values for
and
. Let's call
and
the OLS estimators of α and β. One of the main goals of econometrics is to analyze the quality of these estimators and see under what conditions these are good estimators and under which conditions they are not.
Once we have
and
, we can construct two more variables. The first is the fitted values, or estimates of y:

The second is the estimates of the error terms, which we will call the residuals:

These two variables will be important later on.
This page may need to be