I need the $x$ coordinates of two new points that split an elliptical arc between 2 given points in quadrant I into 3 equal pieces. How can I get these coordinates? I want to use Wolfram but I can also use Excel, C++ or Javascript. Quick-and-dirty is fine.
There are two parts to this problem, and I have already done the first.
First: Find the total arc length (easy). Second: Find the points that evenly partition the arc into three arcs of equal length.
My work so far:
I have a vertically-oriented ellipse whose equation is
$\frac{x^2}{b^2}+\frac{y^2}{a^2}=1$
were a and b are measured in meters. Then
$y=\frac{a}{b}\sqrt{b^2-x^2}$
and
$\frac{dy}{dx}=\frac{-ax}{b\sqrt{b^2 - x^2}}$
I checked online for arclength integral formulas and decided it made most sense to keep my equation in terms of x or y so my answers would be in meters. The formula I am using is
$L = \int \sqrt{1 + \left(\frac{dy}{dx}\right)^2} dx$
So then I need $1/3$ of
$L = \int_{x_1}^{x_2} \sqrt{1 + \frac{a^2 x^2}{b^2 \left(b^2 - x^2\right)}} dx$
Now, for my use-case, $a = 14$ and $b = 8$. I have my endpoints approximated at
$\left(x_1,y_1\right) = \left(2.07052,13.523\right)$
$\left(x_2,y_2\right) = \left(7.43548,5.15728\right)$
(endpoints are fixed for this problem)
Using only the x-coordinates, Wolfram spits out the following for the required $1/3$ arc length:
$\frac{1}{3}L = \int_{2.07052}^{7.43548} \sqrt{1 + \frac{196 x^2}{64 \left(64 - x^2\right)}} dx \approx 3.41743 $
My Problem:
I would like to find 2 more x-coordinates between $x_1$ and $x_2$ such that each of the 3 arcs between them are about the same length as Wolfram just calculated. I attempted to see what Wolfram would say if I just told it to "solve for b:"
$3.41743 = \int_{2.07052}^b \sqrt{1 + \frac{196 x^2}{64 \left(64 - x^2\right)}} dx$
But Wolfram had no idea what I was talking about. I also tried using Wolfram's "approximation" of the integral and set that equal to the value I needed. I told wolfram to "solve" this:
$3.41743 = \frac{32 \sqrt{64 - x^2} \sqrt{1 - \frac{49 x^2}{16 \left(-64 + x^2 \right)}} E\left(sin^{-1}\left(\frac{x}{8}\right)|-\frac{33}{16}\right)}{\sqrt{1024 + 33 x^2}}$
but the answer Wolfram gave me was "approximately" an even nastier formula (I was hoping for a decimal!) You can feed this to Wolfram to see for yourself:
Solve[3.41743 == (32 Sqrt[64 - x^2] Sqrt[1 - (49 x^2)/(16 (-64 + x^2))] EllipticE[ArcSin[x/8], -33/16])/Sqrt[1024 + 33 x^2], {x}]
How can I find these points?