2. Pure Calculus

Differentiation

Advanced differentiation techniques: product, quotient, chain rules, implicit differentiation and higher-order derivatives with applied examples.

Differentiation

Hey students! šŸ‘‹ Welcome to one of the most powerful tools in mathematics - differentiation! This lesson will take you through advanced differentiation techniques that are essential for AS-level Further Mathematics. By the end of this lesson, you'll master the product rule, quotient rule, chain rule, implicit differentiation, and higher-order derivatives. These techniques will unlock your ability to analyze complex functions and solve real-world problems involving rates of change, optimization, and motion analysis. Let's dive into the fascinating world of advanced calculus! šŸš€

The Product Rule: When Functions Multiply

When you need to differentiate a function that's the product of two other functions, the basic power rule won't work. That's where the product rule comes to the rescue!

The product rule states: If $y = u \cdot v$, then $\frac{dy}{dx} = u \frac{dv}{dx} + v \frac{du}{dx}$

Think of it this way, students: "The derivative of a product is the derivative of the first times the second, plus the first times the derivative of the second." šŸ“

Let's see this in action with a real-world example. Imagine you're analyzing the revenue function for a tech startup. If the price per unit is $p(t) = 50 - 0.1t$ (decreasing over time due to competition) and the number of units sold is $q(t) = 100 + 2t$ (increasing due to market growth), then revenue $R(t) = p(t) \cdot q(t)$.

To find how revenue changes over time:

$R(t) = (50 - 0.1t)(100 + 2t)$

$R'(t) = (-0.1)(100 + 2t) + (50 - 0.1t)(2)$

$R'(t) = -10 - 0.2t + 100 - 0.2t = 90 - 0.4t$

This tells us that initially revenue increases at $90 per unit time, but this rate decreases by $0.4 per unit time squared! šŸ’°

The Quotient Rule: Dividing Functions Gracefully

When you have a function that's one function divided by another, the quotient rule is your best friend. For $y = \frac{u}{v}$, the quotient rule gives us:

$$\frac{dy}{dx} = \frac{v \frac{du}{dx} - u \frac{dv}{dx}}{v^2}$$

Remember it as "bottom times derivative of top, minus top times derivative of bottom, all over bottom squared." šŸŽÆ

Consider this practical example, students: In pharmacology, the concentration of a drug in the bloodstream might follow $C(t) = \frac{20t}{t^2 + 4}$, where $t$ is time in hours. To find the rate of change of concentration:

Let $u = 20t$ and $v = t^2 + 4$

$\frac{du}{dt} = 20$ and $\frac{dv}{dt} = 2t$

$C'(t) = \frac{(t^2 + 4)(20) - (20t)(2t)}{(t^2 + 4)^2} = \frac{20t^2 + 80 - 40t^2}{(t^2 + 4)^2} = \frac{80 - 20t^2}{(t^2 + 4)^2}$

This shows that concentration initially increases (when $t^2 < 4$) but then decreases as the drug is metabolized! šŸ’Š

The Chain Rule: Unraveling Composite Functions

The chain rule is arguably the most important differentiation technique you'll learn. It handles composite functions - functions within functions. If $y = f(g(x))$, then:

$$\frac{dy}{dx} = f'(g(x)) \cdot g'(x)$$

Think of it as working from the outside in, students! šŸ”—

Here's a climate science example: The temperature $T$ (in Celsius) at altitude $h$ (in meters) follows $T(h) = 15 - 0.0065h$. If a weather balloon rises according to $h(t) = 100t^2$ (where $t$ is in minutes), what's the rate of temperature change experienced by the balloon?

We need $\frac{dT}{dt}$ where $T = 15 - 0.0065h$ and $h = 100t^2$.

$\frac{dT}{dh} = -0.0065$ and $\frac{dh}{dt} = 200t$

By the chain rule: $\frac{dT}{dt} = \frac{dT}{dh} \cdot \frac{dh}{dt} = (-0.0065)(200t) = -1.3t$

So the balloon experiences cooling at a rate of $1.3t$ degrees Celsius per minute! šŸŒ”ļø

Implicit Differentiation: When y Won't Behave

Sometimes equations don't give us $y$ explicitly as a function of $x$. Instead, we have relationships like $x^2 + y^2 = 25$ or $xy + y^2 = x$. Implicit differentiation lets us find $\frac{dy}{dx}$ without solving for $y$ first!

The key is to differentiate both sides with respect to $x$, remembering that whenever you differentiate a term involving $y$, you multiply by $\frac{dy}{dx}$ (thanks to the chain rule).

Let's explore this with an economics example, students. The relationship between supply $S$ and demand $D$ might follow: $S^2 + SD + D^2 = 1000$. To find how supply changes with demand:

Differentiating both sides with respect to $D$:

$2S\frac{dS}{dD} + S + D\frac{dS}{dD} + 2D = 0$

Collecting terms with $\frac{dS}{dD}$:

$(2S + D)\frac{dS}{dD} = -S - 2D$

Therefore: $\frac{dS}{dD} = \frac{-S - 2D}{2S + D}$

This tells us how sensitive supply is to changes in demand at any point on the curve! šŸ“Š

Higher-Order Derivatives: Beyond the First

Sometimes we need to know how the rate of change itself is changing. That's where higher-order derivatives come in! The second derivative $\frac{d^2y}{dx^2}$ tells us about concavity and acceleration, while third and fourth derivatives reveal even more subtle behaviors.

In physics, if position is $s(t) = t^3 - 6t^2 + 9t + 2$, then:

  • Velocity: $v(t) = s'(t) = 3t^2 - 12t + 9$
  • Acceleration: $a(t) = s''(t) = 6t - 12$
  • Jerk: $j(t) = s'''(t) = 6$

The constant jerk tells us the acceleration changes at a steady rate - useful for designing smooth elevator rides! šŸ¢

For functions requiring multiple rules, like $f(x) = xe^{x^2}$, we might need the product rule for the first derivative and then the product rule again (along with the chain rule) for the second derivative:

$f'(x) = e^{x^2} + x \cdot e^{x^2} \cdot 2x = e^{x^2}(1 + 2x^2)$

$f''(x) = e^{x^2} \cdot 4x + e^{x^2}(1 + 2x^2) \cdot 2x = e^{x^2}(4x + 2x + 4x^3) = e^{x^2}(6x + 4x^3)$

Conclusion

students, you've now mastered the essential advanced differentiation techniques! The product rule handles multiplied functions, the quotient rule tackles divisions, the chain rule unravels compositions, implicit differentiation works with hidden relationships, and higher-order derivatives reveal deeper patterns. These tools are fundamental for analyzing everything from business optimization to scientific modeling. With practice, these techniques will become second nature, opening doors to more advanced mathematical concepts and real-world applications! šŸŽ“

Study Notes

• Product Rule: If $y = uv$, then $\frac{dy}{dx} = u\frac{dv}{dx} + v\frac{du}{dx}$

• Quotient Rule: If $y = \frac{u}{v}$, then $\frac{dy}{dx} = \frac{v\frac{du}{dx} - u\frac{dv}{dx}}{v^2}$

• Chain Rule: If $y = f(g(x))$, then $\frac{dy}{dx} = f'(g(x)) \cdot g'(x)$

• Implicit Differentiation: Differentiate both sides with respect to $x$, multiply $\frac{dy}{dx}$ when differentiating $y$ terms

• Higher-Order Derivatives: $f''(x)$ is the derivative of $f'(x)$, $f'''(x)$ is the derivative of $f''(x)$, etc.

• Second Derivative: Indicates concavity and acceleration in physical contexts

• Combination Rules: Often need to apply multiple rules to the same function

• Real Applications: Revenue optimization, drug concentration, temperature change, supply-demand relationships

• Memory Aid for Quotient Rule: "Bottom $d$(top) minus top $d$(bottom), all over bottom squared"

• Chain Rule Strategy: Work from outside function inward, multiply derivatives as you go

Practice Quiz

5 questions to test your understanding