Finding Equation of Parabola from 3 Non-Collinear Points
Given 3 Non Collinear Points \((x_1,y_1)\), \((x_2,y_2)\) and \((x_3,y_3)\) on a Plane, it is possible to find Equations of 2 Axis Aligned Parabolas,
one having Directrix Parallel to \(X\)-Axis, and other having Directrix Parallel to \(Y\)-Axis.
The following details the steps for finding out the Explicit Coordinate Equation for Axis Aligned Parabolas passing through 3 Non Collinear Points \((x_1,y_1)\), \((x_2,y_2)\) and \((x_3,y_3)\) using Matrix Inversion.
The Explicit Coordinate Equation for Axis Aligned Parabolas is given by the following
\(y=Ax^2 + Bx + C\) (For Directrix Parallel to \(X\)-Axis)...(1)
\(x=Ay^2 + By + C\) (For Directrix Parallel to \(Y\)-Axis)...(2)
Since the Parabola having Directrix Parallel to \(X\)-Axis passes through Points \((x_1,y_1)\), \((x_2,y_2)\) and \((x_3,y_3)\), these Points satisfy the equation of the Parabola. Hence,
\(y_1=A{x_1}^2 + Bx_1 + C\) ...(3)
\(y_2=A{x_2}^2 + Bx_2 + C\) ...(4)
\(y_3=A{x_3}^2 + Bx_3 + C\) ...(5)
The equations (3), (4), and (5) form a set of Linear Equations. These equations can be written in Matrix Multiplication form as
Once we get the values of Co-efficients variables \(A\), \(B\) and \(C\) the Explicit Coordinate Equation of the Parabola having Directrix Parallel to \(X\)-Axis can be found out putting these values in equation (1).
Similarly, since the Parabola having Directrix Parallel to \(Y\)-Axis passes through Points \((x_1,y_1)\), \((x_2,y_2)\) and \((x_3,y_3)\), these Points satisfy the equation of the Parabola. Hence,
\(x_1=A{y_1}^2 + By_1 + C\) ...(7)
\(x_2=A{y_2}^2 + By_2 + C\) ...(8)
\(x_3=A{y_3}^2 + By_3 + C\) ...(9)
The equations (7), (8), and (9) form a set of Linear Equations. These equations can be written in Matrix Multiplication form as
Once we get the values of Co-efficients variables \(A\), \(B\) and \(C\) the Explicit Coordinate Equation of the Parabola having Directrix Parallel to \(Y\)-Axis can be found out putting these values in equation (2).
The following gives Implicit Coordinate Equation of Axis Aligned Parabolas passing through 3 Non Collinear Points \((x_1,y_1)\), \((x_2,y_2)\) and \((x_3,y_3)\) as solution of Determinant Equations
For Parabola having Directrix Parallel to \(X\)-Axis
Please note that Interchaging any number of Rows and Columns in Determinants of equations (11) and (12) DOES NOT Change the value of Determinant and hence DOES NOT Change the Equation of Parabolas.