English 中文(简体)
Statistics Tutorial

Selected Reading

Quadratic Regression Equation
  • 时间:2024-09-17

Statistics - Quadratic Regression Equation


Previous Page Next Page  

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 = ax^2 + bx + c where a e 0}$

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 (${x_i, y_i}$) and the parabola equation (${ y = ax^2 + bx + c}$) is minimal. The matrix equation for the parabopc curve is given by:

$ {egin{bmatrix} sum {x_i}^4 & sum {x_i}^3 & sum {x_i}^2 \ sum {x_i}^3 & sum {x_i}^2 & sum x_i \ sum {x_i}^2 & sum x_i & n end{bmatrix} egin{bmatrix} a \ b \ c end{bmatrix} = egin{bmatrix} sum {x_i}^2{y_i} \ sum x_iy_i \ sum y_i end{bmatrix} }$

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 = 1 - frac{SSE}{SST} where \[7pt] SSE = sum (y_i - a{x_i}^2 - bx_i - c)^2 \[7pt] SST = sum (y_i - ar 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.1071x^2 + 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