Least squares

From Wikiversity
Jump to navigation Jump to search

We use the method of Least squares when we have a series of measures (xi, yi) with i = 1, 2, ..., n (i.e., we measured a set of values we called y, and each of these depended on the value of a variable we called x), and we know that the measured points (xi, yi), when drawn on a plane, should (in theory) form a straight line.

Because of measurement errors, the points measured, most probably, will not form a straight line, but they will be approximately aligned. We are interested in finding the straight line which is the most similar to the points measured. So we want to find a function (that is, a straight line) such that We only need to find the appropriate a and b and we will have found our function.

How do we express most similar mathematically?[edit | edit source]

The criterion we will follow to find those a and b is to minimize the error . If we define it this way, this error is the vertical distance between each measured point and the straight line we are seeking. To minimize the total error, we will try to minimize the sum of all errors:

.

But this formula for the global error has a problem: If we have two points, the value of the first being far below the line (so with a big positive error), and the other one, , being far above the line (so with a big negative error), when we sum both errors they will cancel out mutually, giving a total error of . Evidently, that is not what we are seeking. The solution to this problem is to change our formula for the total error and try this one:

.

We will not sum the individual errors, but their squares. This way, all of them will be positive, and to minimize the sum all of them will have to tend to 0.

Why don't we use the absolute value of the errors ()? Because, as we will see, if we use the square of the errors there exists an exact formula to find the a and b which minimize the error (and with the absolute values there is not such formula).

This is why the method is called "least squares", because it tries to find the line which produces the least squares of the individual errors.

Note that we are assuming that the x values are exact, and all the errors are in the y values. In most cases this may be not true, and we could have errors in the y and in the x values. There are other methods which consider this, but the least squares method is the most simple and the most used.

Which are a and b, then?[edit | edit source]

The values for a and b that minimize the total error E are:

and

The most convenient way to calculate these values is to tabulate your data in columns, namely , , and . After calculating the products for each pair , we sum each column, obtaining this way , , and . With these values calculated we only have to substitute them in the formulas for a and b and we are done.

Of course, all the sums and products can be done automatically using a spreadsheet such as Excel. The steps are explained Least squares/Calculation using Excel here with an example.

How to find a and b[edit | edit source]

To find a and b we have to minimize the two-variables function E discussed above. To minimize N-variables functions, as you shall see when you see partial derivatives, you have to find the point(s) where all of its partial derivatives become 0.

Considering the form of E, this gives a set of two linear equations of the two variables a and b. The system is easily solved using Crammer's rule (or equivalently, since the matrix of coefficients is 2x2, inverting it, which is trivial). And the solution found is the expressions given above for a and b.