√x = x^(1/2), 1/x² = x⁻²) so the power rule applies cleanly.In Lesson 6 you found derivatives the hard way — through the limit definition:
f'(x) = lim_{h→0} [f(x+h) − f(x)] / h
Use it once more, by hand, for f(x) = x³.
Expand (x+h)³ = x³ + 3x²h + 3xh² + h³, so the difference quotient is
[(x³ + 3x²h + 3xh² + h³) − x³] / h = 3x² + 3xh + h²
Let h → 0 and the last two terms vanish, leaving f'(x) = 3x².
Now look at the pattern across what you have already proven this way:
| f(x) | f'(x) |
|---|---|
| x | 1 |
| x² | 2x |
| x³ | 3x² |
What would you bet d/dx[x⁴] is, without touching a single limit? Write down your guess and a one-line reason. By the end of this lesson you will be differentiating these in seconds — and trusting it.
The limit definition is the foundation, but nobody differentiates a polynomial from scratch every time. The pattern you spotted in the opening is a theorem.
Power Rule. For any real number
n,d/dx[xⁿ] = n·xⁿ⁻¹Multiply by the old exponent, then subtract 1 from the exponent.
This holds for every real exponent — positive integers, negative integers, and fractions alike. That is the rule's superpower, and it is exactly where students leave points on the table.
Positive integers are the easy case:
d/dx[x⁷] = 7x⁶
Negative exponents work identically — keep the sign on the exponent:
d/dx[x⁻³] = −3x⁻⁴
The new exponent is −3 − 1 = −4, not −2. Subtracting 1 always moves the exponent down, even when it is already negative.
Fractional exponents work too:
d/dx[x^(2/3)] = (2/3)·x^(2/3 − 1) = (2/3)·x^(−1/3)
The power rule needs the function in the form xⁿ. Radicals and reciprocals are disguised powers. Your first move, every time, is to undisguise them:
| Disguised form | Rewrite as power |
|---|---|
√x |
x^(1/2) |
∛x |
x^(1/3) |
1/x |
x⁻¹ |
1/x² |
x⁻² |
5/x³ |
5x⁻³ |
√x · x ... |
rewrite each factor, combine if possible |
You cannot apply the power rule to √x written as a radical — there is no exponent to grab. Rewrite, then differentiate. For example:
d/dx[√x] = d/dx[x^(1/2)] = (1/2)x^(−1/2) = 1/(2√x)
d/dx[1/x²] = d/dx[x⁻²] = −2x⁻³ = −2/x³
Notice the answers are usually rewritten back into radical/fraction form at the end. Powers are the working form; radicals are the presentation form.
Constant Rule. For any constant
c,d/dx[c] = 0
A constant function is a horizontal line. Its slope is zero everywhere, so its derivative is 0 — not c. The derivative of 7 is 0, not 7. (You can see this from the power rule too: 7 = 7x⁰, and the power rule would multiply by the exponent 0.)
Constant Multiple Rule. For any constant
c,d/dx[c·f(x)] = c·f'(x)
A constant coefficient comes along for the ride. Differentiate the function, keep the coefficient:
d/dx[5x⁴] = 5·(4x³) = 20x³
The classic error is to drop the coefficient or to differentiate it. The 5 is not a separate term — it multiplies, so it stays.
Sum/Difference Rule.
d/dx[f(x) ± g(x)] = f'(x) ± g'(x)
You may differentiate term by term. This is what makes polynomials painless — hit each term with the power rule and the constant-multiple rule, keep the signs:
d/dx[3x⁴ − 5x² + 2x − 9]
= 12x³ − 10x + 2 − 0
= 12x³ − 10x + 2
The constant −9 differentiates to 0 and simply disappears.
Find the equation of the tangent line to f(x) = x² at x = 3.
A tangent line needs two things: a point and a slope.
f(3) = 3² = 9, so the point is (3, 9).f'(x) = 2x, so the slope at x = 3 is f'(3) = 2(3) = 6.y − 9 = 6(x − 3), i.e. y = 6x − 9.The derivative is the slope of the tangent line — that is the whole point of Unit 2. A normal line is the line perpendicular to the tangent at the same point; its slope is the negative reciprocal. Here the normal slope would be −1/6, giving y − 9 = −(1/6)(x − 3).
A horizontal tangent has slope 0. So the tangent is horizontal exactly where
f'(x) = 0
Solve that equation. These x-values are where the graph levels off — they will become the candidates for maxima and minima in Unit 5. For now, just find them.
Problem. Differentiate f(x) = 3x⁵ − 7x³ + 2x − 9.
Strategy. Sum/difference rule term by term; power rule + constant multiple on each term; constant goes to 0.
Solution.
f'(x) = 3(5x⁴) − 7(3x²) + 2(1) − 0
= 15x⁴ − 21x² + 2
Self-check (differentiate-check). Each exponent dropped by 1 (5→4, 3→2, 1→0); each coefficient is old-coefficient × old-exponent (3·5=15, 7·3=21, 2·1=2); the constant vanished. ✓
Problem. Differentiate g(x) = √x + 4/x².
Strategy. Neither term is in xⁿ form yet. Rewrite both as powers first, then apply the power rule.
Solution. Rewrite:
g(x) = x^(1/2) + 4x⁻²
Differentiate term by term:
g'(x) = (1/2)x^(−1/2) + 4(−2)x⁻³
= (1/2)x^(−1/2) − 8x⁻³
Rewrite back into radical/fraction form for the final answer:
g'(x) = 1/(2√x) − 8/x³
Self-check. For 4x⁻²: new exponent −2 − 1 = −3 ✓, coefficient 4·(−2) = −8 ✓. The most common slip here is writing the new exponent as −1 instead of −3 — subtracting 1 from −2 goes down.
Problem. Find the equation of the line tangent to f(x) = x³ − 4x at x = 2.
Strategy. Get the point from f, the slope from f', then point-slope.
Solution.
- Point: f(2) = 2³ − 4(2) = 8 − 8 = 0 → (2, 0).
- Derivative: f'(x) = 3x² − 4.
- Slope: f'(2) = 3(4) − 4 = 12 − 4 = 8.
- Tangent line: y − 0 = 8(x − 2), i.e.
y = 8x − 16
Justification language (AP-style). "Because the derivative gives the slope of the tangent line, the slope at x = 2 is f'(2) = 8. Using the point (2, 0), the tangent line is y = 8(x − 2)."
Problem. For f(x) = x³ − 12x + 5, find all x-values where the graph has a horizontal tangent line.
Strategy. Horizontal tangent ⟺ f'(x) = 0. Differentiate, set equal to zero, solve.
Solution.
f'(x) = 3x² − 12
3x² − 12 = 0
x² = 4
x = ±2
The graph has horizontal tangents at x = −2 and x = 2.
Self-check. f'(−2) = 3(4) − 12 = 0 ✓ and f'(2) = 3(4) − 12 = 0 ✓.
[GRAPH: f(x) = x³ − 12x + 5 on [−4, 4] × [−15, 25]
- Horizontal tangent (slope 0) at x = −2, point (−2, 21)
- Horizontal tangent (slope 0) at x = 2, point (2, −11)
- Local max at (−2, 21), local min at (2, −11)
- Increasing on (−∞, −2) ∪ (2, ∞), decreasing on (−2, 2)]
1. Applying the power rule before rewriting.
What students do: leave √x or 1/x³ as-is and guess a derivative.
Why it's wrong: there is no visible exponent to "bring down," so the rule literally doesn't apply.
Fix: rewrite first — √x = x^(1/2), 1/x³ = x⁻³ — then differentiate.
2. Mishandling negative and fractional exponents.
What students do: write d/dx[x⁻²] = −2x⁻¹ or d/dx[x^(1/2)] = (1/2)x^(1/2).
Why it's wrong: they forgot to subtract 1 from the exponent. −2 − 1 = −3; 1/2 − 1 = −1/2.
Fix: always compute the new exponent as n − 1 explicitly, even (especially) when n is negative or fractional.
3. Dropping or differentiating the constant multiple.
What students do: d/dx[5x⁴] = 20 or = x³.
Why it's wrong: a coefficient is a multiplier. It stays attached and is not itself differentiated.
Fix: d/dx[5x⁴] = 5·4x³ = 20x³. Keep the coefficient, differentiate only the power.
4. Thinking d/dx[c] = c.
What students do: d/dx[9] = 9.
Why it's wrong: a constant function is flat; its slope is 0 everywhere.
Fix: d/dx[9] = 0. Any standalone constant term disappears.
5. Confusing f(a) with f'(a) in tangent-line problems.
What students do: use f'(a) as the point's y-coordinate, or f(a) as the slope.
Why it's wrong: the point comes from f, the slope comes from f'. They are different functions.
Fix: write both, labeled: point (a, f(a)), slope f'(a).
d/dx[4x³ − 2x² + 7x − 5] =1. (A) 12x² − 4x + 7. Term by term: 12x² − 4x + 7 − 0.
- (B) keeps −5: the constant must differentiate to 0, not stay. (C) fails to drop exponents. (D) multiplies by the exponent only partway / forgets to reduce powers.
d/dx[1/x⁴] =2. (B) −4/x⁵. Rewrite 1/x⁴ = x⁻⁴; d/dx[x⁻⁴] = −4x⁻⁵ = −4/x⁵.
- (A) drops the negative sign. (C) used new exponent −3 (subtracted wrongly). (D) inverted the rule.
d/dx[6√x] =3. (C) 3/√x. 6√x = 6x^(1/2); derivative 6·(1/2)x^(−1/2) = 3x^(−1/2) = 3/√x.
- (A) added 1 to the exponent (3√x). (B) forgot the 1/2. (D) multiplied coefficient by 2.
f(x) = ½x⁸, then f'(x) =4. (D) 4x⁷. ½·8x⁷ = 4x⁷.
- (A) failed to reduce the exponent (4x⁸). (B) dropped the coefficient ½. (C) differentiated the coefficient instead of the power.
d/dx[7] =5. (B) 0. Derivative of any constant is 0.
- (A) the classic d/dx[c] = c error (7). (C) treats it like x. (D) invents an x.
f(x) = 2x³ − 3/x, f'(x) =6. (C) 6x² + 3/x². Rewrite −3/x = −3x⁻¹; then d/dx[−3x⁻¹] = −3·(−1)x⁻² = +3x⁻² = +3/x². Combined with d/dx[2x³] = 6x², the derivative is 6x² + 3/x².
- (A) treated −3/x as a constant and differentiated it away, giving 6x² + 3. (B) wrong sign on the second term (forgot the two negatives multiply to a positive). (D) used new exponent −2 but kept the original sign, giving −3x⁻².
f(x) = x⁴ − 3x², then f'(−1) =7. (D) 2. f'(x) = 4x³ − 6x; f'(−1) = 4(−1) − 6(−1) = −4 + 6 = 2.
- (A) 10 and (C) −10 come from evaluating f(−1) or mis-evaluating the derivative. (B) sign error on one term (−2).
f(x) = x² − 5x at x = 1 is8. (A) −3. f'(x) = 2x − 5; f'(1) = 2 − 5 = −3.
- (B) used f(1). (C) dropped the sign. (D) reported only −5 (forgot the 2x).
g(x) = x³ − 3x has horizontal tangent lines at9. (B) x = ±1. g'(x) = 3x² − 3 = 0 ⟹ x² = 1 ⟹ x = ±1.
- (A) divided wrong (x = ±3). (C) ignored the constant term. (D) solved 3x² = ... = √3 incorrectly.
f(x) = x³ − 4x at x = 2 (from Example 3) is y = 8x − 16. The normal line at x = 2 has slope10. (C) −1/8. Tangent slope is 8; normal slope is the negative reciprocal −1/8.
- (A) forgot the negative (1/8). (B) is the tangent slope, not the normal. (D) inverted sign only, not reciprocal.
f(x) = x^(1/3), the value of f'(8) is11. (D) 1/12. f'(x) = (1/3)x^(−2/3); f'(8) = (1/3)·8^(−2/3) = (1/3)·(1/4) = 1/12. (nDeriv check, TI-84: MATH → 8:nDeriv( → nDeriv(X^(1/3), X, 8) ≈ 0.0833 = 1/12.)
- (A) inverted the result (12). (B) forgot to evaluate the power of 8 (1/3). (C) used 8^(−1/3) = 1/2 (1/6).
d/dx[8/x²] =12. (A) −16/x³. 8/x² = 8x⁻²; derivative 8·(−2)x⁻³ = −16x⁻³ = −16/x³.
- (B) dropped the sign. (C) used exponent −1. (D) only used the −2, dropped the 8.
13. Rewrite: h(x) = x^(1/3) + 2x⁻². Differentiate:
h'(x) = (1/3)x^(−2/3) + 2(−2)x⁻³ = (1/3)x^(−2/3) − 4x⁻³
Final form: h'(x) = 1/(3·∛(x²)) − 4/x³.
14. s'(x) = 3x² − 12x + 9. Set to zero: 3(x² − 4x + 3) = 3(x − 1)(x − 3) = 0, so velocity is zero at x = 1 s and x = 3 s.
15. The student is correct. By the Constant Rule, d/dx[c] = 0, and by the Sum/Difference Rule the derivative of a sum is the sum of the derivatives. So f'(x) = d/dx[√x] + d/dx[3] = (1/(2√x)) + 0 and g'(x) = d/dx[√x] + d/dx[−100] = (1/(2√x)) + 0. Both equal 1/(2√x). Functions that differ by a constant have identical derivatives because the constant term differentiates to 0.
16. f'(2) = 0 means the slope of the tangent line to the graph of f at x = 2 is zero — the tangent line there is horizontal. Geometrically, the graph levels off at x = 2; this is where f stops decreasing and turns (in fact a relative minimum, as you will classify in Unit 5).
13. (Short answer, NO CALC) Differentiate h(x) = ∛x + 2/x². Show the rewrite step.
14. (Short answer, NO CALC) A particle moves along a line with position s(x) = x³ − 6x² + 9x (in meters, x in seconds). Find s'(x), then find all times when the velocity is zero. (Velocity is the derivative of position.)
15. (Justification, NO CALC) A student claims that because f(x) = √x + 3 and g(x) = √x − 100 differ by a constant, they have the same derivative. Justify whether the student is correct, referencing the appropriate rule.
16. (Interpretation, NO CALC) For f(x) = x³ − 12x + 5 (Example 4), you found horizontal tangents at x = ±2. Explain the meaning of f'(2) = 0 in terms of the graph of f at the point x = 2.
FRQ (9 points total). No calculator.
A particle moves along a horizontal line. For
0 ≤ t ≤ 5, its position (in meters) at timetseconds is given bys(t) = t³ − 6t² + 9t + 2(a) (2 points) Find the velocity
v(t)of the particle. Find the velocity att = 4.(b) (3 points) Find all times
tin[0, 5]at which the particle is at rest (velocity zero), and find the particle's position at each of those times.(c) (2 points) Find an equation of the line tangent to the graph of
s(t)att = 4.(d) (2 points) The acceleration is
a(t) = v'(t). Finda(2), and interpret the meaning ofa(2)in the context of the particle's motion, including units.
(a) Velocity is the derivative of position:
v(t) = s'(t) = 3t² − 12t + 9
At t = 4:
v(4) = 3(16) − 12(4) + 9 = 48 − 48 + 9 = 9
So v(4) = 9 meters per second.
(b) The particle is at rest when v(t) = 0:
3t² − 12t + 9 = 0
3(t² − 4t + 3) = 0
3(t − 1)(t − 3) = 0
t = 1 or t = 3
Both are in [0, 5]. Positions:
s(1) = 1 − 6 + 9 + 2 = 6
s(3) = 27 − 54 + 27 + 2 = 2
The particle is at rest at t = 1 (position 6 m) and at t = 3 (position 2 m).
(c) Tangent line to s(t) at t = 4 needs a point and a slope.
- Point: s(4) = 64 − 96 + 36 + 2 = 6 → (4, 6).
- Slope: s'(4) = v(4) = 9 (from part (a)).
- Tangent line:
s − 6 = 9(t − 4) ⟹ s = 9t − 30
(d) Acceleration:
a(t) = v'(t) = 6t − 12
a(2) = 6(2) − 12 = 0
Interpretation: At t = 2 seconds, the acceleration is 0 meters per second per second, meaning the particle's velocity is momentarily neither increasing nor decreasing — the velocity is, instantaneously, not changing at t = 2.
3t² − 12t + 9; 1 point for v(4) = 9. Lost most often by arithmetic at t = 4 or by writing s(4) instead of s'(4).v(t) = 0; 1 point for both solutions t = 1, 3 (a single root earns no point — both required); 1 point for the two positions 6 and 2. Lost most often by solving the quadratic incorrectly or stopping at the times and never finding positions.9 (must come from s', not s); 1 point for a correct tangent equation through (4, 6). Lost most often by using s(4) as the slope or forgetting the point.a(2) = 0; 1 point for an interpretation that is in context and states units. Lost most often by giving a bare number with no sentence, or omitting units (m/s²). A vague "the speed isn't changing" without referencing velocity/instant can be marked down.Note on justification: On the real exam, "at rest" answers must show v(t) = 0 was solved, not merely asserted. Always exhibit the equation you set to zero.
1. (A) 12x² − 4x + 7. Term by term: 12x² − 4x + 7 − 0.
- (B) keeps −5: the constant must differentiate to 0, not stay. (C) fails to drop exponents. (D) multiplies by the exponent only partway / forgets to reduce powers.
2. (B) −4/x⁵. Rewrite 1/x⁴ = x⁻⁴; d/dx[x⁻⁴] = −4x⁻⁵ = −4/x⁵.
- (A) drops the negative sign. (C) used new exponent −3 (subtracted wrongly). (D) inverted the rule.
3. (C) 3/√x. 6√x = 6x^(1/2); derivative 6·(1/2)x^(−1/2) = 3x^(−1/2) = 3/√x.
- (A) added 1 to the exponent (3√x). (B) forgot the 1/2. (D) multiplied coefficient by 2.
4. (D) 4x⁷. ½·8x⁷ = 4x⁷.
- (A) failed to reduce the exponent (4x⁸). (B) dropped the coefficient ½. (C) differentiated the coefficient instead of the power.
5. (B) 0. Derivative of any constant is 0.
- (A) the classic d/dx[c] = c error (7). (C) treats it like x. (D) invents an x.
6. (C) 6x² + 3/x². Rewrite −3/x = −3x⁻¹; then d/dx[−3x⁻¹] = −3·(−1)x⁻² = +3x⁻² = +3/x². Combined with d/dx[2x³] = 6x², the derivative is 6x² + 3/x².
- (A) treated −3/x as a constant and differentiated it away, giving 6x² + 3. (B) wrong sign on the second term (forgot the two negatives multiply to a positive). (D) used new exponent −2 but kept the original sign, giving −3x⁻².
7. (D) 2. f'(x) = 4x³ − 6x; f'(−1) = 4(−1) − 6(−1) = −4 + 6 = 2.
- (A) 10 and (C) −10 come from evaluating f(−1) or mis-evaluating the derivative. (B) sign error on one term (−2).
8. (A) −3. f'(x) = 2x − 5; f'(1) = 2 − 5 = −3.
- (B) used f(1). (C) dropped the sign. (D) reported only −5 (forgot the 2x).
9. (B) x = ±1. g'(x) = 3x² − 3 = 0 ⟹ x² = 1 ⟹ x = ±1.
- (A) divided wrong (x = ±3). (C) ignored the constant term. (D) solved 3x² = ... = √3 incorrectly.
10. (C) −1/8. Tangent slope is 8; normal slope is the negative reciprocal −1/8.
- (A) forgot the negative (1/8). (B) is the tangent slope, not the normal. (D) inverted sign only, not reciprocal.
11. (D) 1/12. f'(x) = (1/3)x^(−2/3); f'(8) = (1/3)·8^(−2/3) = (1/3)·(1/4) = 1/12. (nDeriv check, TI-84: MATH → 8:nDeriv( → nDeriv(X^(1/3), X, 8) ≈ 0.0833 = 1/12.)
- (A) inverted the result (12). (B) forgot to evaluate the power of 8 (1/3). (C) used 8^(−1/3) = 1/2 (1/6).
12. (A) −16/x³. 8/x² = 8x⁻²; derivative 8·(−2)x⁻³ = −16x⁻³ = −16/x³.
- (B) dropped the sign. (C) used exponent −1. (D) only used the −2, dropped the 8.
13. Rewrite: h(x) = x^(1/3) + 2x⁻². Differentiate:
h'(x) = (1/3)x^(−2/3) + 2(−2)x⁻³ = (1/3)x^(−2/3) − 4x⁻³
Final form: h'(x) = 1/(3·∛(x²)) − 4/x³.
14. s'(x) = 3x² − 12x + 9. Set to zero: 3(x² − 4x + 3) = 3(x − 1)(x − 3) = 0, so velocity is zero at x = 1 s and x = 3 s.
15. The student is correct. By the Constant Rule, d/dx[c] = 0, and by the Sum/Difference Rule the derivative of a sum is the sum of the derivatives. So f'(x) = d/dx[√x] + d/dx[3] = (1/(2√x)) + 0 and g'(x) = d/dx[√x] + d/dx[−100] = (1/(2√x)) + 0. Both equal 1/(2√x). Functions that differ by a constant have identical derivatives because the constant term differentiates to 0.
16. f'(2) = 0 means the slope of the tangent line to the graph of f at x = 2 is zero — the tangent line there is horizontal. Geometrically, the graph levels off at x = 2; this is where f stops decreasing and turns (in fact a relative minimum, as you will classify in Unit 5).
| Part | Point | Earned for |
|---|---|---|
| (a) | 1 | v(t) = 3t² − 12t + 9 |
| (a) | 1 | v(4) = 9 (with or without units) |
| (b) | 1 | Sets v(t) = 0 |
| (b) | 1 | Both solutions t = 1 and t = 3 |
| (b) | 1 | Positions s(1) = 6 and s(3) = 2 |
| (c) | 1 | Slope s'(4) = 9 and point (4, 6) |
| (c) | 1 | Correct tangent equation s = 9t − 30 |
| (d) | 1 | a(2) = 0 (from a(t) = 6t − 12) |
| (d) | 1 | Interpretation in context with units (m/s²): velocity instantaneously not changing |
Total: 9 points.
CalcIQ · Lesson 7 of 35 · Unit 2 — Differentiation: Definition & Fundamentals
This lesson is exam-preparation material aligned to the College Board AP® Calculus AB Course and Exam Description. AP® is a registered trademark of the College Board, which was not involved in the production of, and does not endorse, this product.
Accuracy note: Every derivative, tangent line, and numerical value in this lesson was independently recomputed and verified by symbolic differentiation (Python/SymPy). Reviewed for mathematical accuracy.