The Intuition First

A derivative measures how fast something is changing at any given moment. That's it. Every formal definition, every notation, every rule — they all serve that one idea.

Consider driving a car. Your speedometer shows 60 mph. That reading doesn't tell you how far you've traveled; it tells you your rate of change of position right now. Your speedometer is, in a very real sense, showing you a derivative.

From Average Rate to Instantaneous Rate

Suppose a car travels 120 miles in 2 hours. Its average speed is 120 ÷ 2 = 60 mph. But we know the car didn't move at exactly 60 mph for every second of the trip — it sped up, slowed down, stopped at lights.

What if we wanted the speed at a single instant? We could shrink the time interval: instead of 2 hours, use 1 hour, then 10 minutes, then 1 second, then 0.001 seconds. As the interval shrinks toward zero, our average rate approaches the instantaneous rate — and that limit is what we call the derivative.

The Formal Definition

For a function f(x), the derivative at a point x is defined as:

f'(x) = lim (h → 0) of [f(x + h) − f(x)] / h

This expression is called the difference quotient. It calculates the slope of a line connecting two points on the curve, and then pushes those two points infinitely close together until you get the slope at a single point — also known as the slope of the tangent line.

What Does the Derivative Tell You?

  • Positive derivative: the function is increasing at that point
  • Negative derivative: the function is decreasing at that point
  • Zero derivative: the function has a flat tangent — often a peak, valley, or saddle point
  • Large magnitude: the function is changing rapidly
  • Small magnitude: the function is changing slowly

Common Derivative Rules (No Limits Required)

In practice, you rarely compute derivatives from the definition. Instead, you use rules:

RuleFormDerivative
Power Rulexⁿn·xⁿ⁻¹
Constant Rulec (any constant)0
Sum Rulef(x) + g(x)f'(x) + g'(x)
Product Rulef(x)·g(x)f'g + fg'
Chain Rulef(g(x))f'(g(x))·g'(x)
Sinesin(x)cos(x)
Cosinecos(x)−sin(x)

A Simple Example

Let's find the derivative of f(x) = 3x² + 5x − 2.

  1. Apply the power rule to 3x²: derivative is 6x
  2. Apply the power rule to 5x (which is 5x¹): derivative is 5
  3. Apply the constant rule to −2: derivative is 0
  4. Combine: f'(x) = 6x + 5

So at x = 2, the function is changing at a rate of 6(2) + 5 = 17 units per unit of x.

Where Are Derivatives Used?

  • Physics: velocity is the derivative of position; acceleration is the derivative of velocity
  • Economics: marginal cost and marginal revenue are derivatives of cost and revenue functions
  • Engineering: analyzing how systems respond to change
  • Machine learning: gradient descent (training neural networks) is fundamentally about computing derivatives

The Big Picture

The derivative is one half of calculus (the other half being the integral). Together they describe change and accumulation — the two most fundamental processes in the physical world. Understanding derivatives deeply, not just mechanically, opens the door to genuine mathematical and scientific thinking.