No history yet

Advanced Differentiation Mechanics

Chain Rule with Transcendental Functions

The Chain Rule is your most critical tool when dealing with composite functions. You already know the core idea: differentiate the outer function while keeping the inner function intact, then multiply by the derivative of the inner function. For engineers, precision here is non-negotiable, as these functions model real-world physical systems.

Let's apply this to — functions that “transcend” algebra, like trigonometric, exponential, and logarithmic functions. Consider the function y=cos(x3)y = \cos(x^3). The outer function is cos(u)\cos(u) and the inner function is u=x3u = x^3. The derivatives are sin(u)-\sin(u) and 3x23x^2, respectively.

dydx=sin(x3)Derivative of outer3x2Derivative of inner\frac{dy}{dx} = \underbrace{-\sin(x^3)}_{\text{Derivative of outer}} \cdot \underbrace{3x^2}_{\text{Derivative of inner}}

The process is the same even with multiple nested functions. For f(x)=esin(2x)f(x) = e^{\sin(2x)}, we have three layers: eue^u, sin(v)\sin(v), and 2x2x. You just work from the outside in.

f(x)=esin(2x)Deriv. of eucos(2x)Deriv. of sin(v)2Deriv. of 2xf'(x) = \underbrace{e^{\sin(2x)}}_{\text{Deriv. of } e^u} \cdot \underbrace{\cos(2x)}_{\text{Deriv. of } \sin(v)} \cdot \underbrace{2}_{\text{Deriv. of } 2x}

Logarithmic Differentiation

For functions that are a tangled mess of products, quotients, or powers, especially with variables in the exponent, direct differentiation is painful. simplifies the process by leveraging the properties of logarithms to break the function apart before you differentiate.

The strategy is straightforward:

  1. Take the natural logarithm (ln\ln) of both sides of the equation y=f(x)y = f(x).
  2. Use log properties to expand the expression.
  3. Differentiate both sides implicitly with respect to xx.
  4. Solve for dydx\frac{dy}{dx}.

Let's use this for a classic tricky case: y=xcos(x)y = x^{\cos(x)}.

Inverse Trigonometric Functions

Inverse trigonometric functions appear frequently in problems involving angles, geometry, and waves. Their derivatives are algebraic, a surprising but useful outcome. Memorizing them is essential, but understanding their derivation through implicit differentiation builds a deeper grasp.

Let's derive the derivative for y=arcsin(x)y = \arcsin(x). This is equivalent to x=sin(y)x = \sin(y). Now we differentiate both sides with respect to xx.

ddx(x)=ddx(sin(y))    1=cos(y)dydx\frac{d}{dx}(x) = \frac{d}{dx}(\sin(y)) \implies 1 = \cos(y) \cdot \frac{dy}{dx}

Solving for dydx\frac{dy}{dx} gives 1cos(y)\frac{1}{\cos(y)}. To get this back in terms of xx, we use the identity sin2(y)+cos2(y)=1\sin^2(y) + \cos^2(y) = 1. This gives cos(y)=1sin2(y)\cos(y) = \sqrt{1 - \sin^2(y)}. Since x=sin(y)x = \sin(y), we can substitute to find cos(y)=1x2\cos(y) = \sqrt{1 - x^2}.

This leads to the final result: ddx(arcsin(x))=11x2\frac{d}{dx}(\arcsin(x)) = \frac{1}{\sqrt{1-x^2}}

The derivatives for the other inverse trigonometric functions can be found using a similar process. For engineering applications, you must be able to recall and apply these fluently.

FunctionDerivative
y=arcsin(u)y = \arcsin(u)y=11u2uy' = \frac{1}{\sqrt{1-u^2}} \cdot u'
y=arccos(u)y = \arccos(u)y=11u2uy' = -\frac{1}{\sqrt{1-u^2}} \cdot u'
y=arctan(u)y = \arctan(u)y=11+u2uy' = \frac{1}{1+u^2} \cdot u'
y=arccot(u)y = \operatorname{arccot}(u)y=11+u2uy' = -\frac{1}{1+u^2} \cdot u'
y=arcsec(u)y = \operatorname{arcsec}(u)$y' = \frac{1}{
y=arccsc(u)y = \operatorname{arccsc}(u)$y' = -\frac{1}{

Time to test your skills.

Quiz Questions 1/6

What is the derivative of y=cos(x3)y = \cos(x^3) with respect to xx?

Quiz Questions 2/6

Find the derivative of the function f(x)=esin(2x)f(x) = e^{\sin(2x)}.