Quadratic Regression Calculator
Fit a parabola y = ax^2 + bx + c to data points.
Quadratic regression fits the best parabola through a set of points.
The math behind it
It solves the least-squares normal equations for a, b and c in y = ax^2 + bx + c. Leave a point at (0, 0) to ignore it.
Worked example
Points on y = x^2 + 1 recover a = 1, b = 0, c = 1.
FAQ
How many points do I need?
At least three; more points improve the fit.