← MathScape

Derivatives of Exponential Functions

MATH162
Reference: Stewart 6.2  •  Chapter: 6  •  Section: 2

Navigation: Wiki Home > Skills > Derivatives of Exponential Functions

Derivatives of Exponential Functions

Why Exponential Derivatives Matter

The exponential function $e^x$ has a remarkable property: it equals its own derivative. No other function (besides $f(x) = 0$) has this property. This makes $e^x$ the fundamental building block for differential equations and mathematical models of growth and decay.

When we differentiate general exponential functions $a^x$, the natural logarithm $\ln a$ appears naturally. This connection between exponentials and logarithms runs deep and will be essential throughout calculus.

Prerequisite Map

This skill
Derivatives of Exponentials

Quick Reference

Function Derivative Notes
$e^x$ $e^x$ The only non-zero function that is its own derivative
$e^{u(x)}$ $e^{u(x)} \cdot u'(x)$ Chain rule version
$a^x$ $a^x \ln a$ General base ($a > 0$, $a \neq 1$)
$a^{u(x)}$ $a^{u(x)} \cdot (\ln a) \cdot u'(x)$ Chain rule with general base

Key Concepts

The Fundamental Formula

$$\boxed{\frac{d}{dx}[e^x] = e^x}$$

Why this is true: By definition, $e$ is the unique number where $\lim_{h \to 0} \frac{e^h - 1}{h} = 1$.

Using the limit definition of derivative: $$\frac{d}{dx}[e^x] = \lim_{h \to 0} \frac{e^{x+h} - e^x}{h} = \lim_{h \to 0} \frac{e^x(e^h - 1)}{h} = e^x \cdot \lim_{h \to 0} \frac{e^h - 1}{h} = e^x \cdot 1 = e^x$$

Geometric meaning: At any point $(x, e^x)$ on the graph of $y = e^x$, the slope of the tangent line equals the $y$-coordinate.

      y
      |               /
      |              /  slope = e^2 ≈ 7.39
      |             /   at (2, e^2)
      |           /
      |         /
      |       /    slope = e ≈ 2.72
      |     /      at (1, e)
      |   /
      | /   slope = 1 at (0, 1)
      |/
   ---+-------------------------- x

Chain Rule with Exponentials

For composite functions $e^{u(x)}$:

$$\boxed{\frac{d}{dx}[e^{u(x)}] = e^{u(x)} \cdot u'(x)}$$

Think of it as: derivative of outside × derivative of inside.

Example: If $y = e^{3x^2}$, then $u = 3x^2$ and $u' = 6x$. $$\frac{dy}{dx} = e^{3x^2} \cdot 6x = 6x e^{3x^2}$$

Derivatives of General Exponentials

For $f(x) = a^x$ where $a > 0$ and $a \neq 1$:

$$\boxed{\frac{d}{dx}[a^x] = a^x \ln a}$$

Why this works: Write $a^x = e^{x \ln a}$ (since $e^{\ln a} = a$). Then: $$\frac{d}{dx}[a^x] = \frac{d}{dx}[e^{x \ln a}] = e^{x \ln a} \cdot \ln a = a^x \ln a$$

Special cases:

Chain Rule with General Exponentials

$$\boxed{\frac{d}{dx}[a^{u(x)}] = a^{u(x)} \cdot (\ln a) \cdot u'(x)}$$

Summary of Differentiation Rules

Expression Derivative Memory Aid
$e^x$ $e^x$ "$e^x$ is its own derivative"
$e^{kx}$ $ke^{kx}$ "Constant in front"
$e^{u}$ $e^{u} \cdot u'$ "Chain rule"
$a^x$ $a^x \ln a$ "Bring down ln of base"
$a^{u}$ $a^{u} \cdot (\ln a) \cdot u'$ "Base formula + chain"

Worked Examples

Example 1: Basic Chain Rule

Differentiate $f(x) = e^{-4x}$.

Here $u = -4x$, so $u' = -4$. $$f'(x) = e^{-4x} \cdot (-4) = -4e^{-4x}$$

Example 2: Product Rule with Exponential

Differentiate $y = xe^{-x}$.

Use the product rule: $y = uv$ where $u = x$ and $v = e^{-x}$. $$y' = u'v + uv' = (1)(e^{-x}) + (x)(-e^{-x}) = e^{-x} - xe^{-x} = e^{-x}(1 - x)$$

Example 3: More Complex Chain Rule

Differentiate $g(x) = e^{x^2 + 3x}$.

Here $u = x^2 + 3x$, so $u' = 2x + 3$. $$g'(x) = e^{x^2 + 3x} \cdot (2x + 3) = (2x + 3)e^{x^2 + 3x}$$

Example 4: General Base

Differentiate $h(x) = 5^{2x}$.

Using $\frac{d}{dx}[a^u] = a^u \cdot \ln a \cdot u'$ with $a = 5$ and $u = 2x$: $$h'(x) = 5^{2x} \cdot \ln 5 \cdot 2 = 2(\ln 5) \cdot 5^{2x}$$

Common Mistakes

Mistake Correct Approach
$\frac{d}{dx}[e^x] = x \cdot e^{x-1}$ This is the power rule! For exponentials: $\frac{d}{dx}[e^x] = e^x$
Forgetting the chain rule for $e^{2x}$ $\frac{d}{dx}[e^{2x}] = 2e^{2x}$, not just $e^{2x}$
$\frac{d}{dx}[2^x] = 2^x$ Need the $\ln 2$ factor: $\frac{d}{dx}[2^x] = 2^x \ln 2$
$\frac{d}{dx}[e^{x^2}] = 2xe^{2x}$ Exponent stays the same: $\frac{d}{dx}[e^{x^2}] = 2xe^{x^2}$

Practice Problems

Level 1 Basic Exponential Derivatives

Find the derivative: (a) $f(x) = e^{5x}$ (b) $g(x) = e^{-x}$ (c) $h(x) = 3e^x$

Thought Process

For (a) and (b), apply the chain rule: $\frac{d}{dx}[e^{kx}] = ke^{kx}$. For (c), the constant 3 just multiplies through.

Show Answer

(a) $f'(x) = e^{5x} \cdot 5 = \boxed{5e^{5x}}$

(b) $g'(x) = e^{-x} \cdot (-1) = \boxed{-e^{-x}}$

(c) $h'(x) = 3 \cdot e^x = \boxed{3e^x}$

Level 2 Product Rule with Exponentials

Find the derivative of $f(x) = x^2 e^{3x}$.

Thought Process

Why product rule? We have two functions multiplied together ($x^2$ and $e^{3x}$), neither of which is a constant. The product rule handles this case.

Strategy: Set $u = x^2$ and $v = e^{3x}$. Apply $(uv)' = u'v + uv'$. When differentiating $v = e^{3x}$, remember the chain rule kicks in because the exponent isn't just $x$.

Show Answer

Let $u = x^2$ and $v = e^{3x}$.

  • $u' = 2x$
  • $v' = 3e^{3x}$

Product rule: $$f'(x) = u'v + uv' = 2x \cdot e^{3x} + x^2 \cdot 3e^{3x}$$ $$= 2xe^{3x} + 3x^2 e^{3x}$$ $$= \boxed{e^{3x}(2x + 3x^2)} \quad \text{or} \quad \boxed{xe^{3x}(2 + 3x)}$$

Level 2 General Base Exponentials

Find the derivative: (a) $f(x) = 2^x$ (b) $g(x) = 10^{-x}$

Thought Process

Use $\frac{d}{dx}[a^x] = a^x \ln a$. For (b), combine with the chain rule since the exponent is $-x$.

Show Answer

(a) $f'(x) = 2^x \cdot \ln 2 = \boxed{2^x \ln 2}$

(b) $g'(x) = 10^{-x} \cdot \ln 10 \cdot (-1) = \boxed{-10^{-x} \ln 10}$

Level 3 Trigonometric Combinations

Find the derivative of $y = e^{-4x} \sin 5x$.

Thought Process

Why this is tricky: Two functions multiplied together, AND each has a chain rule inside. The exponential has inner function $-4x$, and sine has inner function $5x$.

Strategy: Product rule first (structure), then chain rule for each factor (details). Factor out common $e^{-4x}$ at the end to simplify—exponentials often factor nicely.

Show Answer

Let $u = e^{-4x}$ and $v = \sin 5x$.

  • $u' = -4e^{-4x}$
  • $v' = 5\cos 5x$

Product rule: $$y' = u'v + uv' = (-4e^{-4x})(\sin 5x) + (e^{-4x})(5\cos 5x)$$ $$= e^{-4x}(-4\sin 5x + 5\cos 5x)$$ $$= \boxed{e^{-4x}(5\cos 5x - 4\sin 5x)}$$

Level 4 Finding Extrema with Exponentials

Find all local extrema of $g(x) = x^2 e^{-x}$ and determine which, if any, are absolute extrema on $[0, \infty)$.

Thought Process

Goal: Find local max/min of $g(x) = x^2 e^{-x}$ on $[0, \infty)$.

Strategy:

  1. Find $g'(x)$ using the product rule
  2. Set $g'(x) = 0$ and solve for critical points
  3. Use the first or second derivative test to classify
  4. Check boundary and behavior at infinity

Key insight: Since $e^{-x} > 0$ always, when solving $g'(x) = 0$, we only need to find where the polynomial factor equals zero.

Show Answer

Find $g'(x)$ using the product rule: $$g'(x) = 2x \cdot e^{-x} + x^2 \cdot (-e^{-x}) = e^{-x}(2x - x^2) = xe^{-x}(2 - x)$$

Set $g'(x) = 0$: $$xe^{-x}(2 - x) = 0$$

Since $e^{-x} > 0$ always, the solutions are $x = 0$ and $x = 2$.

Sign analysis of $g'(x) = xe^{-x}(2-x)$:

  • For $0 < x < 2$: $x > 0$, $e^{-x} > 0$, $(2-x) > 0$ → $g'(x) > 0$ (increasing)
  • For $x > 2$: $x > 0$, $e^{-x} > 0$, $(2-x) < 0$ → $g'(x) < 0$ (decreasing)

So $x = 2$ is a local maximum.

Evaluate:

  • $g(0) = 0$ (boundary)
  • $g(2) = 4e^{-2} = \frac{4}{e^2} \approx 0.541$
  • As $x \to \infty$: $g(x) \to 0$ (exponential decay dominates polynomial growth)

Conclusions:

  • Local and absolute maximum: $\boxed{\frac{4}{e^2}}$ at $x = 2$
  • Absolute minimum: $0$ at $x = 0$ (boundary)
Level 5 Differential Equations

Show that $y = Ae^{-2x} + Be^{3x}$ satisfies the differential equation $y'' - y' - 6y = 0$ for any constants $A$ and $B$.

Thought Process

Compute $y'$ and $y''$, then substitute into the differential equation and verify that the result is 0. Group terms by $Ae^{-2x}$ and $Be^{3x}$ separately.

Show Answer

Compute derivatives: $$y = Ae^{-2x} + Be^{3x}$$ $$y' = -2Ae^{-2x} + 3Be^{3x}$$ $$y'' = 4Ae^{-2x} + 9Be^{3x}$$

Substitute into $y'' - y' - 6y$: $$= (4Ae^{-2x} + 9Be^{3x}) - (-2Ae^{-2x} + 3Be^{3x}) - 6(Ae^{-2x} + Be^{3x})$$

Group by $Ae^{-2x}$ terms: $$4Ae^{-2x} + 2Ae^{-2x} - 6Ae^{-2x} = (4 + 2 - 6)Ae^{-2x} = 0$$

Group by $Be^{3x}$ terms: $$9Be^{3x} - 3Be^{3x} - 6Be^{3x} = (9 - 3 - 6)Be^{3x} = 0$$

Total: $y'' - y' - 6y = 0 + 0 = \boxed{0}$ ✓

Note: This works because $-2$ and $3$ are roots of the characteristic equation $r^2 - r - 6 = 0$.

CCI-Style Conceptual Questions

Question 1: What is $\frac{d}{dx}[e^{2x+1}]$?

(A) $e^{2x+1}$ (B) $2e^{2x+1}$ (C) $(2x+1)e^{2x}$ (D) $2e^{2x}$

Answer

(B) Using the chain rule with $u = 2x + 1$: $\frac{d}{dx}[e^u] = e^u \cdot u' = e^{2x+1} \cdot 2$. The exponent stays as $2x+1$, and we multiply by the derivative of the exponent.

Question 2: The slope of the tangent line to $y = e^x$ at $x = 2$ is:

(A) $2$ (B) $e$ (C) $e^2$ (D) $2e$

Answer

(C) Since $\frac{d}{dx}[e^x] = e^x$, the slope at any point equals the $y$-value at that point. At $x = 2$: slope $= e^2 \approx 7.39$.

Question 3: Which function has derivative $3 \cdot 2^x$?

(A) $2^x$ (B) $3 \cdot 2^x$ (C) $\frac{3}{\ln 2} \cdot 2^x$ (D) $3x \cdot 2^{x-1}$

Answer

(C) Since $\frac{d}{dx}[2^x] = 2^x \ln 2$, we need $\frac{d}{dx}[C \cdot 2^x] = C \cdot 2^x \ln 2 = 3 \cdot 2^x$. Solving: $C \ln 2 = 3$, so $C = \frac{3}{\ln 2}$.

Mastery Checklist

Mental Model

The "Copy Machine" Function:

Think of $e^x$ as a function that copies itself when differentiated:

For $e^{u}$ with chain rule:

For general bases:

The adjustment factor $\ln a$ tells you how much "faster" or "slower" base $a$ grows compared to base $e$:

Previous Up Next
The Number e Skills Index Integrals of Exponentials

Last updated: 2026-01-23