AP Calculus AB · Lesson 7 of 35
CalcIQ · AP Calculus AB

Lesson 7: Basic Derivative Rules

Unit 2 · Differentiation: Definition & Fundamentals · Exam Weight:** 10–12% · 7/35 lessons · Mathematical Practice:** 1 — Implementing Mathematical Processes
Calculator:** Primarily non-calculator
Objectives:
  • Differentiate any polynomial or power function on sight using the power, constant, constant-multiple, and sum/difference rules.
  • Rewrite radicals and reciprocals as powers (√x = x^(1/2), 1/x² = x⁻²) so the power rule applies cleanly.
  • Find equations of tangent and normal lines, and locate where a graph has a horizontal tangent.

(a) Opening Question

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)
x1
2x
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.


(b) Core Concepts

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.

The Power Rule

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)

Rewrite First — the habit that makes everything work

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 formRewrite as power
√xx^(1/2)
∛xx^(1/3)
1/xx⁻¹
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.

The Constant Rule

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 0not 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.)

The Constant Multiple Rule

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.

The Sum and Difference Rule

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.

Worked Example: A Tangent Line (full habit on display)

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.

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).

Where is the tangent horizontal?

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.


(c) Worked Examples

Example 1 — Polynomial derivative (NO CALC)

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. ✓


Example 2 — Rewrite, then differentiate (NO CALC)

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.


Example 3 — Tangent line (NO CALC)

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.

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)."


Example 4 — Where is the tangent horizontal? (NO CALC)

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)]

(d) Common Mistakes

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.

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.

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.

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.

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).

---

## (e) Practice Problems

Question 1
(NO CALC) d/dx[4x³ − 2x² + 7x − 5] =
Question 2
(NO CALC) d/dx[1/x⁴] =
Question 3
(NO CALC) d/dx[6√x] =
Question 4
(NO CALC) If f(x) = ½x⁸, then f'(x) =
Question 5
(NO CALC) d/dx[7] =
Question 6
(NO CALC) For f(x) = 2x³ − 3/x, f'(x) =
Question 7
(NO CALC) If f(x) = x⁴ − 3x², then f'(−1) =
Question 8
(NO CALC) The slope of the tangent line to f(x) = x² − 5x at x = 1 is
Question 9
(NO CALC) The function g(x) = x³ − 3x has horizontal tangent lines at
Question 10
(NO CALC) The line tangent to f(x) = x³ − 4x at x = 2 (from Example 3) is y = 8x − 16. The normal line at x = 2 has slope
Question 11
(CALC) For f(x) = x^(1/3), the value of f'(8) is
Question 12
(NO CALC) d/dx[8/x²] =

(Short answer, NO CALC) Differentiate h(x) = ∛x + 2/x². Show the rewrite step.

(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.)

(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.

(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.

---

## (f) AP Exam Focus — Free Response

> FRQ (9 points total). No calculator.

>

> A particle moves along a horizontal line. For 0 ≤ t ≤ 5, its position (in meters) at time t seconds is given by

> `

> s(t) = t³ − 6t² + 9t + 2

> `

>

> (a) (2 points) Find the velocity v(t) of the particle. Find the velocity at t = 4.

>

> (b) (3 points) Find all times t in [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) at t = 4.

>

> (d) (2 points) The acceleration is a(t) = v'(t). Find a(2), and interpret the meaning of a(2) in the context of the particle's motion, including units.

### Model Solution

(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.

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.

Scoring Commentary — where students lose points

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.


🔑 Answer Key

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. (A) −4/x⁵. Rewrite 1/x⁴ = x⁻⁴; d/dx[x⁻⁴] = −4x⁻⁵ = −4/x⁵.

- (B) drops the negative sign. (C) used new exponent −3 (subtracted wrongly). (D) inverted the rule.

3. (A) 3/√x. 6√x = 6x^(1/2); derivative 6·(1/2)x^(−1/2) = 3x^(−1/2) = 3/√x.

- (B) forgot the 1/2. (C) added 1 to the exponent. (D) multiplied coefficient by 2.

4. (A) 4x⁷. ½·8x⁷ = 4x⁷.

- (B) dropped the coefficient ½. (C) differentiated the coefficient instead of the power. (D) failed to reduce the exponent.

5. (A) 0. Derivative of any constant is 0.

- (B) the classic d/dx[c] = c error. (C) treats it like x. (D) invents an x.

6. (A) 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².

- (B) wrong sign on the second term (forgot the two negatives multiply to a positive). (C) treated −3/x as a constant and differentiated it to nothing meaningful. (D) used new exponent −2 but kept the original sign, giving −3x⁻².

7. (A) 2. f'(x) = 4x³ − 6x; f'(−1) = 4(−1) − 6(−1) = −4 + 6 = 2.

- (B) sign error on one term. (C)/(D) used f(−1) or mis-evaluated.

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. (A) x = ±1. g'(x) = 3x² − 3 = 0 ⟹ x² = 1 ⟹ x = ±1.

- (B) divided wrong. (C) ignored the constant term. (D) solved 3x² = ... = √3 incorrectly.

10. (A) −1/8. Tangent slope is 8; normal slope is the negative reciprocal −1/8.

- (B) is the tangent slope, not the normal. (C) forgot the negative. (D) inverted sign only, not reciprocal.

11. (A) 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.)

- (B) forgot to evaluate the power of 8. (C) used 8^(−1/3) = 1/2. (D) inverted the result.

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).

### FRQ Rubric (9 points)

| 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.

← Lesson 6
Lesson 8 →
Score: 0/0 correct