What is the derivative of #f(t) = (e^t/t +e^t, e^t-cost ) #?

1 Answer
Jun 14, 2017

#f'(t) = << e^t(1+1/t-1/t^2), e^t + sint>>#

#dy/dx = (t^2(e^t+sint))/(e^t(t^2+t-1))#

Explanation:

There are two different derivatives depending on what you want to know about the function. One of them provides the velocity (a vector), and one provides the slope (a scalar).

The velocity vector for a function at time #t# is found by:

#f'(x) = << dx/dt, dy/dt >>#

So we need to find #dx/dt# and #dy/dt#. They are:

#dx/dt = d/dt (1/t*e^t + e^t) = (1/t*e^t - 1/t^2 * e^t + e^t)#

#= e^t(1+1/t - 1/t^2)#

#dy/dt = d/dt (e^t - cost) = e^t + sint#

Therefore, our velocity derivative is:

#f'(x) = << e^t(1+1/t-1/t^2), e^t + sint>>#

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The slope of this function can be found with:

#dy/dx = (dy"/"dt)/(dx"/"dt)#

Since we already found #dy/dt# and #dx/dt# above, we can use those same functions here to shorten the explanation:

#(dy"/"dt)/(dx"/"dt) = (e^t+sint)/(e^t(1+1/t-1/t^2))#

To make this look a bit simpler, we can multiply the top and bottom by #t^2# to eliminate the fractions on the bottom.

#(e^t+sint)/(e^t(1+1/t-1/t^2)) = (t^2(e^t+sint))/(e^t(t^2+t-1))#

Final Answer