Calculus Differentiation- Techniques and Applications

What Differentiation Actually Is

Differentiation is the process of finding the derivative of a function. The derivative tells you the rate at which something is changing at any given point. That's it. No metaphors, no philosophical justifications.

In practical terms, if you have a function describing position, the derivative gives you velocity. If you have a function describing cost, the derivative tells you the marginal cost. Derivatives are everywhere in science and engineering because everything changes.

The Basic Rules You Need First

Before tackling complex functions, memorize these. They're the foundation. Everything else builds on them.

Power Rule

The simplest rule. For any term xⁿ, the derivative is n·xⁿ⁻¹.

Examples:

Constant Rule

The derivative of any constant is zero. A number that doesn't change has a rate of change of zero. Makes sense.

Constant Multiple Rule

Constants multiply through. If you have 5x⁴, the derivative is 5·4x³ = 20x³.

Sum and Difference Rules

Take derivatives term by term. d/dx(x² + 3x - 5) = 2x + 3.

The Three Rules That Actually Matter for Harder Problems

Product Rule

When you multiply two functions together, you can't just multiply the derivatives. The product rule handles this:

d/dx[f(x)·g(x)] = f'(x)·g(x) + f(x)·g'(x)

Think "first times derivative of second, plus second times derivative of first." A simple mnemonic: "left d-right, right d-left".

Example: Find d/dx(x²·sin(x))

f(x) = x², so f'(x) = 2x

g(x) = sin(x), so g'(x) = cos(x)

Answer: 2x·sin(x) + x²·cos(x)

Quotient Rule

For dividing functions, the formula is uglier:

d/dx[f(x)/g(x)] = [f'(x)·g(x) - f(x)·g'(x)] / [g(x)]²

Remember this: "low d-high minus high d-low, over low squared".

Example: d/dx[x/(x+1)]

f(x) = x, f'(x) = 1

g(x) = x+1, g'(x) = 1

Answer: [(1)(x+1) - (x)(1)] / (x+1)² = 1/(x+1)²

Chain Rule

This is the one most people struggle with. Use it when you have a function inside another function—called composite functions.

d/dx[f(g(x))] = f'(g(x))·g'(x)

Strip it down: take the derivative of the outside function, keep the inside unchanged, then multiply by the derivative of the inside.

Example: d/dx[(3x + 2)⁵]

Outside: 5(3x+2)⁴

Inside derivative: 3

Answer: 5(3x+2)⁴·3 = 15(3x+2)⁴

Derivative Rules Comparison Table

Rule Formula When to Use
Power Rule d/dx(xⁿ) = n·xⁿ⁻¹ Single term with power
Product Rule f'g + fg' Two functions multiplied
Quotient Rule (f'g - fg')/g² One function divided by another
Chain Rule f'(g(x))·g'(x) Composite functions (function inside function)

Higher-Order Derivatives

The first derivative tells you rate of change. The second derivative tells you how that rate is changing—in other words, the concavity or curvature.

Take the derivative twice. If f(x) = x⁴, then:

Physics students care about this. Acceleration is the second derivative of position with respect to time.

Where Differentiation Shows Up in the Real World

Physics

Position → velocity → acceleration. Every physics student derives these relationships. If s(t) is position, v(t) = s'(t) and a(t) = s''(t).

Economics

Marginal cost and marginal revenue are derivatives. Companies use them to figure out optimal production levels. If cost function C(q) gives total cost at quantity q, then C'(q) tells you the cost of producing one more unit.

Optimization Problems

Setting a derivative equal to zero finds maximum and minimum points. This applies to:

Biology

Population growth rates, enzyme reaction rates, spread of diseases—all modeled with derivatives. The logistic growth equation uses derivatives to model how populations stabilize over time.

Common Mistakes That Will Cost You Points

How to Actually Get Good at Differentiation

Differentiation is a mechanical skill. You learn it the same way you learn long division: practice until it's automatic.

  1. Start with the power rule. Drill it until you can do x⁷ in your sleep.
  2. Add one rule at a time. Master the product rule before touching the chain rule.
  3. Check your answers. Most calculus problems have online calculators that show steps. Use them.
  4. Work backwards. If you know the derivative is 6x², what was the original function? 2x³ + C. This builds intuition.
  5. Time yourself. Basic derivatives should take under 30 seconds. If they're taking longer, you're not fluent yet.

The goal is to reach a point where you see x⁴·sin(x) and immediately know you need the product rule, then apply it without hesitation. That level of automaticity only comes from doing hundreds of problems.

Trigonometric and Exponential Derivatives

You need to memorize these too:

The trig derivatives cycle. Sin to cos to -sin to -cos and back. The exponential derivative is unique—eˣ is its own derivative.

For chain rule on these, multiply by the derivative of the inside as usual. d/dx(sin(3x)) = cos(3x)·3 = 3cos(3x).