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?
2026-04-04 10:17:09.1775297829
How to parameterize the elliptic equation with length of arc $t$
1.6k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in PARAMETRIC
- Suggest parametric equations for a given curve
- Parametric Circle equations and intersections
- Is it possible to construct the equation of a surface from its line element?
- Finding the equation of aline in implicit form
- Finding whether a parametric curve has a well defined tangent at the origin
- Parametric representation of a cylinder generated by a straight line
- Converting circle parametric equation
- Finding the major and minor axes lengths of an ellipse given parametric equations
- Draw (2, 3) torus knot on the unwrapped torus surface
- Question about parametric, implicit equation and vector equation
Related Questions in PARAMETRIZATION
- How might I find, in parametric form, the solution to this (first order, quasilinear) PDE?
- parameterization of the graph $y=x^2$ from (-2,4) to (1,1)
- How can I prove that the restricted parametrization of a surface in $\mathbb{R}^{3}$ ia a diffeomorphism?
- Is it possible to construct the equation of a surface from its line element?
- Arc length of curve of intersection between cylinder and sphere
- Variational Autoencoder - Reparameterization of the normal sampling
- Sweet spots for cubic Bezier curve.
- Sketch the parametrised curve $C = \{(1-e^{-t},e^{-2t}):t\in [0,\infty]\}$
- Finding a parametrization of the curve of intersection between two surfaces
- Finding Parametric Equations for the right side of Hyperbola
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
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)$$