Property
A quadratic equation can be written in the form
y=ax2+bx+c To find the three parameters
a,
b, and
c, you need three data points. Substituting the coordinates of each of the three points into the equation of the parabola creates a system of three linear equations in the three unknowns
a,
b, and
c, which can then be solved.
Examples
- To find the parabola through (1,3), (3,5), and (4,9), we solve the system: a+b+c=3, 9a+3b+c=5, and 16a+4b+c=9. The solution is a=1,b=−3,c=5, so the equation is y=x2−3x+5.
- A parabola passes through (0,8), (1,5), and (2,6). The system is c=8, a+b+c=5, and 4a+2b+c=6. Substituting c=8 gives a+b=−3 and 4a+2b=−2. The solution is a=2,b=−5,c=8, so y=2x2−5x+8.