What is the arclength of #f(t) = (t/sqrt(t^2+2),t/e^(t-2))# on #t in [-1,1]#?

1 Answer
May 26, 2018

#s=int_(-1)^1 sqrt(4/(t^2 + 2)^3 + e^(4 - 2 t) (1 - t)^2) ~~ 22.9212#

Explanation:

Using the Arc Length Formula, we have

#color(blue)(s=int_(-1)^(1) sqrt((dx/dt)^2+(dy/dt)^2)dt)#

Since #x(t)=t/sqrt(t^2+2)#, differentiating and simplifying, we have

#dx/dt=2/(t^2 + 2)^(3/2)#

Similarly,

#dy/dt= (1-t)e^(2-t)#

Substituting into the formula, we have

#s=int_(-1)^(1) sqrt((2/(t^2 + 2)^(3/2))^2+((1-t)e^(2-t))^2)dt#

#=int_(-1)^1 sqrt(4/(t^2 + 2)^3 + e^(4 - 2 t) (1 - t)^2)#

This integral unfortunately cannot be expressed in terms of standard functions or constants, so the best you can get is either an infinite series or an approximation.

In this case, the integral evaluates to #s~~22.9212#, which is our final answer.

For arclength type questions, please take note that the vast majority of the resultant integrals will, like this one, be unsolvable in terms of standard functions.

Explanation for Arc Length Formula

To find the arc length #Deltas# over a time #Deltat#, you can try to approximate it with a straight line, using the hypotenuse of the right-angled triangle with sides #Deltax, Deltay#, which is the change in the x- and y- coordinates over the time #t#.

#Deltas ~~ sqrt(Deltax^2+Deltay^2)#

Of course, this will often be wildly inaccurate since most curves aren't exactly a straight line.

However, for a continuous function, the smaller time interval you choose, the more accurate the above approximation is (you can imagine zooming in on a function's graph: the more you zoom, the closer the function looks like a straight line)

Thus, at the limit when you shorten the time interval to be really (infinitesimally) small, you get

#ds = sqrt(dx^2+dy^2)#

With #ds, dx, dy# here just representing really small changes in #s, x, y#

To manipulate it to suit the given parametric, we can adjust the equation such that #ds# is in terms of #dt#.

#ds = sqrt((dx/dt*dt)^2+(dy/dt*dt)^2)#
#=sqrt(((dx/dt)^2+(dy/dt)^2)dt^2)#
#=sqrt((dx/dt)^2+(dy/dt)^2)dt#

So for the arc length #s# from #t=a# to #t=b#, we have, by integrating both sides,

#s=int_a^b sqrt((dx/dt)^2+(dy/dt)^2)dt#