Evaluating numerical algorithm
Fitting a Parabola (or Quadratic Curve Fitting) uses the Least Squares Method to fit a second-degree polynomial equation to a set of data points where the trend exhibits curvature.
Normal Equations for Parabola ():
Where:
Given the following dataset of 5 observation points:
| X | 0 | 1 | 2 | 3 | 4 |
|---|---|---|---|---|---|
| Y | 1.0 | 1.8 | 3.3 | 6.0 | 9.5 |
Therefore, using Quadratic Curve Fitting, the parabolic equation of best fit for the given dataset is y = 0.9857 + 0.5286x + 0.4071x².