How to parameterize the elliptic equation with length of arc $t$

1.6k Views Asked by At

As we know, the equation of elliptic is $$\frac{x^2}{a^2}+\frac{y^2}{b^2}=r^2$$ But I want to use its parametric form,the $t$ is representative of the arc length.So how to parameterize the elliptic equation?

1

There are 1 best solutions below

3
On

As Mark Fischler commented, I do not see how this could be done.

Using $x=a\, r\cos(t)$, $y=a \,r\sin(t)$, the arc length is given by $$L=r\int_{0}^{u} \sqrt{a^2 \cos^2(t)+b^2 \sin^2(t)}\,dt=br\, E\left(u\left|1-\frac{a^2}{b^2}\right. \right)$$ You cannot extract explicitely $u$ from this equation except writing $$u=\text{InverseFunction}[\text{EllipticE},1,2]\left[\frac{L}{b r},1-\frac{a^2}{b^2}\right]$$ which is not the most convenient.

However, for cases, what you could do is to use parametric splines $x=f(L)$ and $y=g(L)$

Edit (six years later)

If you are optimistic and want to solve for $u$ the equation $$L=b\,r\, E\left(u\left|1-\frac{a^2}{b^2}\right. \right)$$ let $$A=\frac L{b\,r} \qquad \text{and}\qquad k=1-\frac{a^2}{b^2}$$ and use the series expansion $$E(u|k)=u-\frac{k}{6}u^3+\frac{(4-3 k) k }{120} u^5+O\left(u^7\right)$$ and power series reversion would give $$u=A+\frac{ k}{6}A^3+\frac{k (13 k-4)}{120} A^5 +O\left(A^7\right)$$