Maths I — Week 5: Applications of Derivatives

1327 words
7 min read
View

Maths I — Week 5: Applications of Derivatives

The Big Idea: The derivative tells you the slope at any point. But slope is direction. A positive slope means the function is climbing. A zero slope means the function has peaked or bottomed out. This is how we find the best (and worst) values of any mathematical model.

1. Monotonicity — Is the Function Rising or Falling?

ConditionMeaning
f(x)>0f'(x) > 0 on (a,b)(a, b)ff is strictly increasing — moving up-right
f(x)<0f'(x) < 0 on (a,b)(a, b)ff is strictly decreasing — moving down-right
f(x)=0f'(x) = 0 at x=cx = cStationary (critical) point — function momentarily "flat"
If two functions
ff (strictly increasing) and gg (strictly decreasing) intersect at x0x_0, then f(x)g(x)f(x) \geq g(x) for all xx0x \geq x_0, and g(x)f(x)g(x) \geq f(x) for all xx0x \leq x_0. This is directly tested in Week 7, Question 2.

2. Finding Critical Points

A critical point is where the derivative is zero or undefined.

Procedure

  • Step 1: Compute f(x)f'(x).
  • Step 2: Set f(x)=0f'(x) = 0 and solve for xx.
  • Step 3: Check additional points where f(x)f'(x) is undefined (e.g., at sharp corners or domain boundaries).
Example: For f(x)=x33x2+2f(x) = x^3 - 3x^2 + 2:
  • f(x)=3x26x=3x(x2)f'(x) = 3x^2 - 6x = 3x(x - 2).
  • Critical points: x=0x = 0 and x=2x = 2.

3. First Derivative Test

After finding critical points, check the sign of ff' on either side:
Sign ChangeConclusion
ff' changes ++ to -Local Maximum
ff' changes - to ++Local Minimum
No sign changeInflection Point (neither max nor min)
Continuing the example:
  • At x=0x = 0: ff' changes from ++ to -Local Max, f(0)=2f(0) = 2.
  • At x=2x = 2: ff' changes from - to ++Local Min, f(2)=2f(2) = -2.

4. Second Derivative Test (Faster Route)

At a critical point cc where f(c)=0f'(c) = 0:
ConditionConclusion
f(c)<0f''(c) < 0Local Maximum (concave down — like ∩)
f(c)>0f''(c) > 0Local Minimum (concave up — like ∪)
f(c)=0f''(c) = 0Inconclusive — use the First Derivative Test
Remember it visually: concave
down = peak (like an upside-down bowl) = maximum. Concave up = valley (like a right-side-up bowl) = minimum.

5. Concavity and Inflection Points

Concavity describes the direction the curve is "bending":
  • f(x)>0f''(x) > 0: Concave Up (slopes are increasing).
  • f(x)<0f''(x) < 0: Concave Down (slopes are decreasing).
An Inflection Point is where concavity flips (changes sign). It is not necessarily a critical point.

6. Global vs. Local Extrema

  • Local: Only better than neighbors in a small neighborhood.
  • Global: Best (or worst) over the entire domain.
Rule for closed intervals [a,b][a, b]:
Always evaluate ff at: all interior critical points AND the endpoints f(a)f(a) and f(b)f(b). The true global max/min is the largest/smallest among all these values.

7. Pattern A — The Optimization Protocol

What to recognize: A word problem asking to maximize or minimize something (area, profit, time, cost).

Abstract Solution (Strategy)

  1. [Define objective]: Identify the quantity to maximize/minimize. Write it as a function.
  2. [Apply constraint]: Use any given restrictions to reduce to one variable.
  3. [Differentiate]: ddx(objective)=0\frac{d}{dx}(\text{objective}) = 0.
  4. [Verify]: Use the second derivative test or boundary check.

Procedure

  • Step 1: Let the variable be xx.
  • Step 2: Write the objective function P(x)P(x).
  • Step 3: Compute P(x)P'(x) and set to 0.
  • Step 4: Confirm it is a max/min using P(x)P''(x).
Worked Example:
Find two positive numbers whose sum is 20 and whose product is maximum.
  • Let numbers be xx and 20x20 - x. Product P=x(20x)P = x(20-x).
  • P(x)=202x=0    x=10P'(x) = 20 - 2x = 0 \implies x = 10.
  • P(x)=2<0P''(x) = -2 < 0 → Maximum.
  • Result: Both numbers are 10, product = 100.

Question: Price p(x)=1000xp(x) = 1000 - x. Cost C(x)=30000+300xC(x) = 30000 + 300x for x400x \leq 400. Maximize profit for x400x \leq 400.

Abstract Solution (Strategy)

  1. [Revenue]: R(x)=xp(x)=x(1000x)R(x) = x \cdot p(x) = x(1000 - x).
  2. [Profit]: P(x)=R(x)C(x)P(x) = R(x) - C(x).
  3. [Maximize]: Vertex of the resulting quadratic.

Procedure

  • Step 1: P(x)=(1000xx2)(30000+300x)=x2+700x30000P(x) = (1000x - x^2) - (30000 + 300x) = -x^2 + 700x - 30000.
  • Step 2: P(x)=2x+700=0    x=350P'(x) = -2x + 700 = 0 \implies x = 350.
  • Step 3: 350400350 \leq 400 ✓.
  • Result: Produce 350 units.
Profit =
Total Revenue (not unit price!) minus Total Cost. Forgetting to multiply price by quantity is the most common error in these problems.

9. Tangent and Normal Lines

Tangent at (a,f(a))(a, f(a)): yf(a)=f(a)(xa)y - f(a) = f'(a)(x - a)
Normal at (a,f(a))(a, f(a)): yf(a)=1f(a)(xa)y - f(a) = -\frac{1}{f'(a)}(x - a)
Worked Example:
Find the tangent and normal to y=xy = \sqrt{x} at x=4x = 4.
  • f(4)=2f(4) = 2. Point: (4,2)(4, 2).
  • f(x)=12x    f(4)=14f'(x) = \frac{1}{2\sqrt{x}} \implies f'(4) = \frac{1}{4}.
  • Tangent: y2=14(x4)    y=x4+1y - 2 = \frac{1}{4}(x-4) \implies y = \frac{x}{4} + 1.
  • Normal: y2=4(x4)    y=4x+18y - 2 = -4(x-4) \implies y = -4x + 18.

10. Common Mistakes

MistakeWhy it happensCorrect approach
Not checking endpoints for global extremaFocusing only on critical points in the interior.On a closed interval, all endpoints must be evaluated alongside critical points.
Misidentifying inflection as extremumSeeing f(c)=0f'(c) = 0 and assuming it's a max/min.Always check the sign change of ff' (First Derivative Test). No sign change = inflection.
Incorrect profit formulaUsing price as revenue.Revenue = Price × Quantity. R(x)=xp(x)R(x) = x \cdot p(x).
Second Derivative Test on inconclusive pointsf(c)=0f''(c) = 0 is not "neutral" — it means the test fails entirely.Fall back to the First Derivative Test in this case.

11. Flashcards

<Flashcard front="If f'(a) = 0 and f''(a) > 0, what do we conclude?" back="f has a local MINIMUM at x = a. (Concave up = valley = minimum.)" /> <Flashcard front="What is the slope of the normal line if f'(a) = 3?" back="-1/3. The normal slope is always the negative reciprocal of the tangent slope." /> <Flashcard front="What does f'(x) > 0 mean?" back="The function is strictly increasing on that interval." /> <Flashcard front="For global extrema on [a,b], what must you always check?" back="All interior critical points PLUS both endpoints f(a) and f(b). The largest/smallest is the global answer." /> <Flashcard front="Sign change test: f' goes from + to -, what is at that critical point?" back="A local MAXIMUM." />

12. Practice Targets

  • Analyze f(x)=x44x3f(x) = x^4 - 4x^3 — find all critical points, classify them, identify inflection points.
  • Optimization: A farmer has 100m of fence and wants to enclose a rectangular field maximum area (one side is a wall). Find the optimal dimensions.
  • Attempt Questions 19 and 20 from Graded Assignment 8 (direct optimization).
  • Given two monotone functions that intersect, predict the relative ordering for different xx ranges.

13. Connections

Connects toHow
Week 4 — DerivativesAll optimization requires computing f(x)f'(x) first.
Week 8 — Profit MaximizationThe exact optimization pattern is tested in the Week 8 graded assignment.
Week 7 — Monotone FunctionsUnderstanding strictly increasing/decreasing functions is tested directly in Week 7, Question 2.

Backlinks

0 References

No inbound references detected.

Document Outline
Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.