What is the derivative of #f(t) = (e^t/t +e^t, e^t-cost ) #?
1 Answer
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
#f'(x) = << dx/dt, dy/dt >>#
So we need to find
#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)/(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
#(e^t+sint)/(e^t(1+1/t-1/t^2)) = (t^2(e^t+sint))/(e^t(t^2+t-1))#
Final Answer