Processing math: 100%

Statistics - Quadratic Regression Equation



Quadratic regression is deployed to figure out an equation of the parabola which can best fit the given set of data. It is of following form:

y=ax2+bx+c where a0

Least square method can be used to find out the Quadratic Regression Equation. In this method, we find out the value of a, b and c so that squared vertical distance between each given point (xi,yi) and the parabola equation (y=ax2+bx+c) is minimal. The matrix equation for the parabolic curve is given by:

[xi4xi3xi2xi3xi2xixi2xin][abc]=[xi2yixiyiyi]

Correlation Coefficient, r

Correlation coefficient, r determines how good a quardratic equation can fit the given data. If r is close to 1 then it is good fit. r can be computed by following formula.

r=1SSESST where SSE=(yiaxi2bxic)2 SST=(yiˉy)2

Generally, quadratic regression calculators are used to compute the quadratic regression equation.

Example

Problem Statement:

Compute the quadratic regression equation of following data. Check its best fitness.

x-3-2-10123
y7.530.513614

Solution:

Compute a quadratic regression on calculator by putting the x and y values. The best fit quadratic equation for above points comes as

y=1.1071x2+x+0.5714

To check the best fitness, plot the graph.

quadratic regression equation

So the value of Correlation Coefficient, r for the data is 0.99420 and is close to 1. Hence quadratic regression equation is best fit.

Advertisements