Polynomial Fitting

This lesson discusses root mean square error and how to fit a polynomial with the information it provides.

In various scientific fields, we often have data that we need to model using a mathematical equation. This is also called curve fitting, and when the mathematical equation of the model is a polynomial, we call it polynomial fitting.

Root mean square error

One way to quantify the fit between data and a model is to compute the root mean square error. This error is defined as the difference between the observed value and the modeled value. The term ‘error’ is also sometimes known as residual. If the error of data point ii is written as εi\varepsilon_{i}, and the total number of observations is NN, then the sum of squared errors SS is:

S=εi2S=\sum\varepsilon_{i}^2

When the total number of observations is NN, the root mean square error EE is computed as:

E=1NS=1Nεi2E=\sqrt{\frac{1}{N}S}=\sqrt{\frac{1}{N}\sum\varepsilon_{i}^2}

The root mean square error is an estimate of how well the curve fits and can be computed for any model and any dataset.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy