We are exploring arc length. We want to understand what is happening. (We do NOT care whether we can integrate symbollically! Any program will integrate for us.)
YouTube Videos: Parameterization Arc Length
Related Sage Pages: Arc Length of Explicit Curves in 2D Arc Length of Parametric Curves in 2D Line Integral of Function - SOLVER
Related Wiki Pages:
|
|
Remember that a curve in 3d can ONLY be defined parametrically!
|
|
Look at the curve above and estimate a minimum and maximum value for its length L.
Arc Length of a Curve given parametrically C=s: \lt x(t),\, y(t),\, z(t) \gt for t \in [t1,t2] is
\newcommand{\Bold}[1]{\mathbf{#1}}\left(-4 \, \sin\left(t\right) \cos\left(t\right),\,3 \, \cos\left(t\right),\,2\right)
\newcommand{\Bold}[1]{\mathbf{#1}}\left(-4 \, \sin\left(t\right) \cos\left(t\right),\,3 \, \cos\left(t\right),\,2\right)
|
\newcommand{\Bold}[1]{\mathbf{#1}}40.0345236851
\newcommand{\Bold}[1]{\mathbf{#1}}40.0345236851
|
So the arc length of this weirdo curve using the formula (which we are calling our "exact" result even though it is being calculated numerically) is L=40.03
Let us approximate this length by finding tangent line segments at regularly spaced values of t along the curve.
This algorithm is exactly the same as for parametric curves in 2d!
|
|
We draw pieces of tangent line segments starting at these points.
So parametrically these line segments are: s(j)+λ·ds(j) for λ=[0, stepsize].
|
|
We sum the length of these pieces.
\newcommand{\Bold}[1]{\mathbf{#1}}45.3086935965559
\newcommand{\Bold}[1]{\mathbf{#1}}45.3086935965559
|
So the approximate arc length of this weirdo curve using 4 tangent pieces is: L_4 =45.31.
We calculate our error.
\newcommand{\Bold}[1]{\mathbf{#1}}0.131740543560301
\newcommand{\Bold}[1]{\mathbf{#1}}0.131740543560301
|
Our error is \approx 13%.
Let us try more or less step sizes - change the value of steps2 and revaluate.
|
|
We sum the length of these pieces.
\newcommand{\Bold}[1]{\mathbf{#1}}39.8247733971104
\newcommand{\Bold}[1]{\mathbf{#1}}39.8247733971104
|
So the approximate arc length of this weirdo curve using 16 tangent pieces is: L_{16} =39.82.
We calculate our new error.
\newcommand{\Bold}[1]{\mathbf{#1}}0.00523923525710368
\newcommand{\Bold}[1]{\mathbf{#1}}0.00523923525710368
|
Our error is now \approx 0.5%.
|
|