Back

Arc Length

Suppose that we would like to determine or calculate the continuous function \(y = f(x)\) on the interval \([a,b]\).
First of all, we have to estimate the length of the curve because we cannot calculate its length directly.We usually estimate by diving the interval up into \(n\) equal subintervals each of width \(\Delta x\) and we will indicate the point on the curve at each point as \({{\rm{P}}_{\rm{i}}}\).We can then approximate the curve by a series of straight lines connecting the points

Here is a sketch of this situation for n=8

graph
As we know,the length of each of these line segments can be shown as \(|{P_i} - {P_{i - 1}}|\). The length of the curve can be calculated approximately

$$L \approx \sum\limits_{i = 2}^n {|{P_{i - 1}} - {P_i}|} $$

By taking n larger and larger we can get the result:

$$L = \mathop {\lim }\limits_{n \to \infty } \sum\limits_{i = 2}^n {|{P_{i - 1}} - {P_i}|} $$

Let us get a better approach the length of each of these line segments.

As we know from geometry, we can consider length of each of these line segments as:

$$\eqalign{ & \Delta {y_i} = {y_i} - {y_{i - 1}} \cr & \Delta {x_i} = {x_i} - {x_{i - 1}} \cr} $$

We can calculate the length of the line segments with this way:

$$|{P_i} - {P_{i - 1}}| = \sqrt {{{({x_i} - {x_{_{i - 1}}})}^2} + {{({y_i} - {y_{_{i - 1}}})}^2}} $$

$$ = \sqrt {\Delta {y_i}^2 + \Delta {x_i}^2} $$

From the M.V.T(Mean Value Theorem),we can say that on the interval \([{x_{i - 1}},{x_i}]\) there is point \({x_k}\) such that

$$\Delta {y_i} = f({x_i}) - f({x_{i - 1}}) = f\prime ({x_k})({x_i} - {x_{i - 1}})$$

$$\Delta {y_i} = f\prime ({x_k})\Delta x$$

To sum up, length can be written as:

$$|{P_{i - 1}} - {P_i}| = \sqrt {{{({x_i} - {x_{i - 1}})}^2} + {{({y_i} - {y_{i - 1}})}^2}} $$

$$ = \sqrt {\Delta {x^2} + {{[f\prime ({x_k})]}^2}\Delta {x^2}} $$

$$= \sqrt {1 + {{[f\prime ({x_k})]}^2}} \Delta x$$

Now we can calculate the exact length

$$L = \mathop {\lim }\limits_{n \to \infty } \sum\limits_{i = 2}^n {|{P_i} - {P_{i - 1}}|} $$

$$ = \mathop {\lim }\limits_{n \to \infty } \sum\limits_{i = 2}^n {\sqrt {1 + {{[f\prime ({x_k})]}^2}} } \Delta x$$

From the definition of the definite integral:

$$L = \int\limits_a^b {\sqrt {1 + {{[f\prime (x)]}^2}} dx} $$

i.e.

$$L = \int\limits_a^b {\sqrt {1 + {{({{dy} \over {dx}})}^2}} } dx$$

In a similar way, we can evaluate a formula for \({\mathop{\rm x}\nolimits} = g(y)\) on \([c,d]\).Formula is:

$$L = \int\limits_c^d {\sqrt {1 + {{[h\prime (y)]}^2}} } dy$$

It sometimes can be diffucult to calculate arc length without computer help. In this part, we will look at the sample python code to compute arc length
The code represents: $$f(x): = \ln (\sec x)$$ Arc length of f(x) between 0 and \(\pi\)/4 $$f\prime : = \tan (x)$$ $$L = \int\limits_0^{{\pi \over 4}} {\sqrt {1 + {{(\tan x)}^2}} } dx$$ $$ = {\rm{0}}{\rm{.881373587019543}}$$