Navigation: Wiki Home > Skills > Sum, Difference, and Constant Multiple Rules
Here's a powerful idea: differentiation "plays nicely" with addition and scalar multiplication. If you can differentiate individual pieces, you can differentiate their sum just by adding up the derivatives. This means that once you know the Power Rule, you can differentiate any polynomial—no matter how complicated.
These rules capture a fundamental property: the derivative operator is linear. In mathematical notation, $\frac{d}{dx}$ distributes over sums just like multiplication does.
| Property | Value |
|---|---|
| Concept | Differentiation Formulas |
| Chapter | 2.3 |
| Difficulty | Beginner |
| Time | ~15 minutes |
Constant Multiple Rule: If $c$ is a constant and $f$ is differentiable, then: $$\boxed{\frac{d}{dx}[cf(x)] = c\frac{d}{dx}[f(x)] = cf'(x)}$$
"Constants factor out of derivatives."
Sum Rule: If $f$ and $g$ are both differentiable, then: $$\boxed{\frac{d}{dx}[f(x) + g(x)] = \frac{d}{dx}[f(x)] + \frac{d}{dx}[g(x)] = f'(x) + g'(x)}$$
"The derivative of a sum is the sum of the derivatives."
Difference Rule: If $f$ and $g$ are both differentiable, then: $$\boxed{\frac{d}{dx}[f(x) - g(x)] = f'(x) - g'(x)}$$
"The derivative of a difference is the difference of the derivatives."
These rules are compact in prime notation:
| Rule | Leibniz Notation | Prime Notation |
|---|---|---|
| Constant Multiple | $\frac{d}{dx}[cf] = cf'$ | $(cf)' = cf'$ |
| Sum | $\frac{d}{dx}[f+g] = f' + g'$ | $(f+g)' = f' + g'$ |
| Difference | $\frac{d}{dx}[f-g] = f' - g'$ | $(f-g)' = f' - g'$ |
Constant Multiple Rule Proof:
Let $g(x) = cf(x)$. Then: $$g'(x) = \lim_{h \to 0}\frac{g(x+h) - g(x)}{h} = \lim_{h \to 0}\frac{cf(x+h) - cf(x)}{h}$$ $$= \lim_{h \to 0}c \cdot \frac{f(x+h) - f(x)}{h} = c \cdot \lim_{h \to 0}\frac{f(x+h) - f(x)}{h} = cf'(x)$$
The constant $c$ pulls out of the limit because it doesn't depend on $h$.
Sum Rule Proof:
Let $F(x) = f(x) + g(x)$. Then: $$F'(x) = \lim_{h \to 0}\frac{[f(x+h) + g(x+h)] - [f(x) + g(x)]}{h}$$ $$= \lim_{h \to 0}\left[\frac{f(x+h) - f(x)}{h} + \frac{g(x+h) - g(x)}{h}\right] = f'(x) + g'(x)$$
These rules combine with the Power Rule to differentiate any polynomial:
Example: Differentiate $p(x) = 3x^4 - 5x^2 + 7x - 2$
Step by step: $$p'(x) = \frac{d}{dx}(3x^4) - \frac{d}{dx}(5x^2) + \frac{d}{dx}(7x) - \frac{d}{dx}(2)$$ $$= 3 \cdot 4x^3 - 5 \cdot 2x + 7 \cdot 1 - 0$$ $$= 12x^3 - 10x + 7$$
The Sum Rule extends to any number of functions: $$(f + g + h)' = f' + g' + h'$$
This follows by applying the Sum Rule twice: $$(f + g + h)' = ((f + g) + h)' = (f + g)' + h' = f' + g' + h'$$
Differentiate $f(x) = 7x^5$.
Find $\frac{dy}{dx}$ if $y = x^3 + x^2 - 4x$.
Differentiate $g(t) = 2t^6 - 3t^4 + 5t^2 - 8t + 11$.
Find $f'(x)$ if $f(x) = 4\sqrt{x} - \frac{3}{x^2} + 2x$.
Find all points on the curve $y = x^3 - 6x^2 + 9x + 2$ where the tangent line is horizontal.
If $f'(2) = 5$ and $g'(2) = -3$, find $(3f - 2g)'(2)$.
Curves $y = 2x^2$ and $y = x^2 + k$ have parallel tangent lines at every value of $x$. What does this tell you about $k$?
Think of derivatives as "linear operators":
Just as distributing multiplication over addition works: $$3(a + b) = 3a + 3b$$
Differentiation distributes over addition too: $$\frac{d}{dx}(f + g) = \frac{d}{dx}f + \frac{d}{dx}g$$
The derivative "respects" the structure of linear combinations. This is why polynomials are so easy to differentiate—you just handle each term separately.
| Previous | Up | Next |
|---|---|---|
| Power Rule | Skills Index | Product Rule |
Last updated: 2026-01-22