Derive Quadratic Equation from Three Points
The objective of this program is to solve the quadratic equation that passes through three given points. This program asks for three points (X1, Y1), (X2, Y2), (X3, Y3). Then the program derives a quadratic equation from those three points. Finally, it displays the a, b, and c values of the quadratic equation: f(x) = ax2 + bx + c.
Download Quadratic-Equation-from-Three-Points Program »