Differentiation rules — computing derivatives efficiently
The Problem: The rate of an enzyme-catalyzed reaction:
$$v = \frac{V_{max}[S]}{K_m + [S]}$$
You need dv/d[S] — how sensitive is the rate to substrate concentration?
Using the limit definition would take a page of algebra. There's a better way.
Every complicated function is built from simple functions via:
If we know derivatives of simple functions + rules for combining them → we can differentiate anything.
| Function Structure | Rule to Use |
|---|---|
| f(x) + g(x) | Sum rule |
| c · f(x) | Constant multiple |
| f(x) · g(x) | Product rule |
| f(x) / g(x) | Quotient rule |
| f(g(x)) | Chain rule |
These you must know cold:
| f(x) | f'(x) | Why |
|---|---|---|
| c | 0 | Constants don't change |
| xⁿ | nxⁿ⁻¹ | Power rule |
| eˣ | eˣ | Definition of e |
| ln x | 1/x | Inverse of eˣ |
| sin x | cos x | From definition |
| cos x | -sin x | From definition |
$$\frac{d}{dx}[x^n] = nx^{n-1}$$
Valid for any real n (positive, negative, fractional).
$$\frac{d}{dx}[cf(x)] = c\frac{df}{dx}$$
$$\frac{d}{dx}[f(x) + g(x)] = \frac{df}{dx} + \frac{dg}{dx}$$
Combined: Differentiation is a linear operator:
$$\frac{d}{dx}[af(x) + bg(x)] = af'(x) + bg'(x)$$
$$\frac{d}{dx}[3x^4 - 5x^2 + 2x - 7] = 12x^3 - 10x + 2$$
$$\frac{d}{dx}[f(x)g(x)] = f'(x)g(x) + f(x)g'(x)$$
$$\frac{d}{dx}\left[\frac{f(x)}{g(x)}\right] = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2}$$
$$v = \frac{V_{max}[S]}{K_m + [S]}$$
$$\frac{dv}{d[S]} = \frac{V_{max}(K_m + [S]) - V_{max}[S] \cdot 1}{(K_m + [S])^2} = \frac{V_{max}K_m}{(K_m + [S])^2}$$
$$\frac{d}{dx}[f(g(x))] = f'(g(x)) \cdot g'(x)$$
In Leibniz notation: If y = f(u) and u = g(x):
$$\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}$$
Intuition: Rates multiply through the chain. If u changes at rate du/dx and y changes at rate dy/du, then y changes at rate (dy/du)(du/dx).
| f(x) | Outer | Inner | f'(x) |
|---|---|---|---|
| (x² + 1)¹⁰ | u¹⁰ | x² + 1 | 10(x² + 1)⁹ · 2x |
| sin(3x + 1) | sin u | 3x + 1 | cos(3x + 1) · 3 |
| ln(x² + 1) | ln u | x² + 1 | 2x/(x² + 1) |
| √(1 - x²) | u^(1/2) | 1 - x² | -x/√(1 - x²) |
Rate constant temperature dependence:
$$k = Ae^{-E_a/RT}$$
Using the chain rule:
$$\frac{dk}{dT} = A \cdot e^{-E_a/RT} \cdot \frac{E_a}{RT^2} = \frac{kE_a}{RT^2}$$
Key insight: As [S] → ∞, dv/d[S] → 0. The enzyme becomes saturated.
| Rule | Formula |
|---|---|
| Constant | (c)' = 0 |
| Power | (xⁿ)' = nxⁿ⁻¹ |
| Constant multiple | (cf)' = cf' |
| Sum | (f + g)' = f' + g' |
| Product | (fg)' = f'g + fg' |
| Quotient | (f/g)' = (f'g - fg')/g² |
| Chain | [f(g)]' = f'(g) · g' |
Differentiate:
Differentiate:
Differentiate:
For v = Vmax[S]/(Km + [S]):
References: McQuarrie, Mathematics for Physical Chemistry; Stewart, Calculus