To explain in detail what I want:
Now,
I have a parabola whose 3 points (x , y) are defined as:
Point 1 : (-9, -1)
Point 2 : (-6,6) [VERTEX POINT]
Point 3: (4,-9)
I need to get the length of the parabola.
Now, the directrix of this parabola is not parallel to x axis.OK?
So, I introduce a transformed coordinate system in which the directrix
is parallel to an axis:
Now, always if I draw a tangent to the parabola at the vertex, it will be parallel to the directrix, right?
So, in the transformed coordinate system , the inclination of directrix would be:
tan(inverse) of 6/-6 [SEE THE VERTEX POINT].Right?
that is : -45 degrees
Now,
A transformed coordinate axis which
is rotated about the origin through an angle T is given by:
[ x' ] [ Cos T Sin T ][ x ] [ x Cos T + y Sin T ]
| | = | || | = | |
[ y' ] [ -Sin T Cos T ][ y ] [ -x Sin T + y Cos T ]
So, I get,
x ' = (x+y) (-cos 45)
y' = (y - x) (-cos45)
Right?
So, the three points with respect to the rotated coordinate axis would be:
Point 1 = ( -7.071 , -5.6568)
Point 2 = (0, 8.4852)
Point 3 = (3.5355 , 9.1923)
Solving the equation,
y = Ax^2 + Bx +C
I get,
A = 0.5091
B = 3.1999
C = -8.4852
y = 0.5091x^2 + 3.1999x +(-8.4852)
Right?
If i want to find the length of the parabolic arc I use:
1+ dy/dx^2)^1/2
and integrate between -7.071 and 3.5355.
I egt answer 33.3338488
But correct answer is : 26.603
Where am I going wrong?
Please help