Academy
PhysicsMath ToolsCalculus in One Line: What a Derivative Actually Is

Calculus in One Line: What a Derivative Actually Is

Calculus sounds intimidating. But the core idea fits in one sentence: a derivative is the instantaneous rate of change. Here is what that means physically, why physics cannot do without it, and how to use it without fear.

Calculus in One Line: What a Derivative Actually Is

A car is moving. Its speedometer reads 60 km/h. What does that number actually mean?

Not "the car travelled 60 km in the last hour" — the car may have been moving for only ten seconds. Not "the car will travel 60 km in the next hour" — it may brake in five seconds.

It means: right now, at this instant, if the car continued at its current rate, it would cover 60 km in one hour.

That "right now, at this instant" is the entire idea of a derivative. The derivative is the instantaneous rate of change — the rate frozen at a single moment, not averaged over a stretch of time.

Everything else in this article is just making that precise.


Why average rate is not enough

Suppose a ball is thrown upward. Its height at time t is given by:

h(t)=20t5t2 metresh(t) = 20t - 5t^2 \text{ metres}

What is its velocity at t = 2 seconds?

You could try the average: height at t = 2 is h(2) = 40 − 20 = 20 m. Height at t = 3 is h(3) = 60 − 45 = 15 m. Average velocity between t = 2 and t = 3:

vavg=152032=5 m/sv_{avg} = \frac{15 - 20}{3 - 2} = -5 \text{ m/s}

But this is the average over a full second. The ball was still moving upward at t = 2, slowing down, stopping somewhere around t = 2, and then coming back down. The average over one second hides all of that.

Make the interval smaller. Between t = 2 and t = 2.1:

h(2.1) = 20(2.1) − 5(2.1)² = 42 − 22.05 = 19.95 m

vavg=19.95200.1=0.5 m/sv_{avg} = \frac{19.95 - 20}{0.1} = -0.5 \text{ m/s}

Between t = 2 and t = 2.01:

h(2.01) = 20(2.01) − 5(2.01)² = 40.2 − 20.2005 = 19.9995 m

vavg=19.9995200.01=0.05 m/sv_{avg} = \frac{19.9995 - 20}{0.01} = -0.05 \text{ m/s}

The average velocity is approaching zero as the interval shrinks. At exactly t = 2, the instantaneous velocity is zero — the ball is momentarily at rest at its highest point.

The derivative is the limit of this process: shrink the time interval to zero, see what the average approaches.


The derivative defined

For any function f(t), the derivative at time t is:

dfdt=limΔt0f(t+Δt)f(t)Δt\frac{df}{dt} = \lim_{\Delta t \to 0} \frac{f(t + \Delta t) - f(t)}{\Delta t}

This notation — df/dt — is read "the derivative of f with respect to t." It means: the instantaneous rate of change of f as t changes.

Do not be intimidated by the limit notation. It simply means: compute the average rate over a small interval Δt, then see what that average approaches as Δt becomes vanishingly small. Whatever it approaches — that is the derivative.

In physics, you rarely need to evaluate limits directly. You use standard differentiation rules. But knowing what the derivative means — instantaneous rate of change — lets you set up the right expression in the first place.


The physical meaning in kinematics

Position, velocity, and acceleration are connected by derivatives.

Velocity is the derivative of position:

v=dxdtv = \frac{dx}{dt}

If you know where an object is at every moment — its position function x(t) — differentiating gives you how fast that position is changing at each moment. That rate of change is velocity.

Acceleration is the derivative of velocity:

a=dvdt=d2xdt2a = \frac{dv}{dt} = \frac{d^2x}{dt^2}

Differentiating velocity gives how fast velocity is changing at each moment. That rate of change is acceleration.

{/* DIAGRAM: Three graphs stacked — x(t), v(t), a(t) — showing the derivative relationship */}

The second derivative notation d²x/dt² means "differentiate x with respect to t, then differentiate the result again." It is acceleration written in terms of position.

Note: Position x(t) → differentiate once → Velocity v(t)
> > Velocity v(t) → differentiate once → Acceleration a(t) > > Position x(t) → differentiate twice → Acceleration a(t) > > This chain runs in both directions. Going forward: differentiate. Going backward: integrate. The next article covers integration.

The rules you need

You do not need to evaluate limits for every function. Differentiation has rules that handle standard forms directly.

Power rule — the most used rule in physics:

ddt(tn)=ntn1\frac{d}{dt}(t^n) = nt^{n-1}

Bring the exponent down as a coefficient, reduce the exponent by one.

Examples:

  • d/dt(t²) = 2t
  • d/dt(t³) = 3t²
  • d/dt(t) = 1
  • d/dt(5) = 0 (constant has zero rate of change)

Constant multiple rule:

ddt[cf(t)]=cdfdt\frac{d}{dt}[cf(t)] = c\frac{df}{dt}

Constants come outside the derivative.

Sum rule:

ddt[f(t)+g(t)]=dfdt+dgdt\frac{d}{dt}[f(t) + g(t)] = \frac{df}{dt} + \frac{dg}{dt}

Differentiate term by term.

With just these three rules, you can differentiate any polynomial — which covers most kinematics problems.

Note: 1. Differentiate each term separately (sum rule). 2. For each term, bring the exponent down as a coefficient (power rule). 3. Reduce the exponent by one. 4. Constants differentiate to zero.

Back to the ball

Return to h(t) = 20t − 5t². Find the velocity function.

v(t)=dhdt=ddt(20t)ddt(5t2)v(t) = \frac{dh}{dt} = \frac{d}{dt}(20t) - \frac{d}{dt}(5t^2)

=20152t=2010t= 20 \cdot 1 - 5 \cdot 2t = 20 - 10t

At t = 2: v(2) = 20 − 20 = 0 m/s. The ball is momentarily at rest. This confirms what the shrinking-interval calculation approached.

At t = 0: v(0) = 20 m/s. The initial velocity is 20 m/s upward.

Now find the acceleration:

a(t)=dvdt=ddt(2010t)=10 m/s2a(t) = \frac{dv}{dt} = \frac{d}{dt}(20 - 10t) = -10 \text{ m/s}^2

Constant acceleration of −10 m/s² — gravity, pulling the ball down throughout. The negative sign tells you it acts downward (if upward is positive). This is consistent with g ≈ 10 m/s².


What the sign of the derivative tells you

The derivative does more than give magnitude. The sign gives direction of change.

Positive derivative: the function is increasing at that instant. Velocity positive means position increasing — object moving in the positive direction.

Negative derivative: the function is decreasing. Velocity negative means position decreasing — object moving in the negative direction.

Zero derivative: the function is momentarily not changing. Velocity zero means the object is instantaneously at rest — at a maximum or minimum of position.

For the ball: v(t) = 20 − 10t = 0 at t = 2. This is the highest point — position is at its maximum, velocity is zero, and after this moment the ball moves downward (v becomes negative).


A note on other useful derivatives

Physics uses a few functions beyond polynomials. Their derivatives are worth knowing:

ddt(sinωt)=ωcosωt\frac{d}{dt}(\sin\omega t) = \omega\cos\omega t

ddt(cosωt)=ωsinωt\frac{d}{dt}(\cos\omega t) = -\omega\sin\omega t

ddt(eat)=aeat\frac{d}{dt}(e^{at}) = ae^{at}

These appear in oscillations (sine and cosine) and in exponential decay (e^at). The ω and a factors come from the chain rule — differentiating the function and then multiplying by the derivative of the argument.


Common mistakes

Warning: Treating average velocity as instantaneous velocity. Δx/Δt over a finite interval is average velocity. dx/dt is instantaneous velocity. They are equal only when acceleration is zero (uniform motion).
> > **Forgetting to bring the coefficient down.** d/dt(5t²) = 5 · 2t = 10t, not 5t. The coefficient of the term multiplies the result from the power rule. > > **Differentiating a constant to get 1.** d/dt(5) = 0, not 1. Constants have zero rate of change — they do not depend on t at all. > > **Confusing d/dt(t) = 1 with d/dt(constant) = 0.** The variable t differentiates to 1. A pure number differentiates to 0. These are different.

A worked example

A particle moves along a line with position x(t) = 3t³ − 12t² + 9t metres.

Find: (a) velocity at t = 1 s, (b) acceleration at t = 2 s, (c) when the particle is at rest.

(a) Velocity function:

v(t)=dxdt=9t224t+9v(t) = \frac{dx}{dt} = 9t^2 - 24t + 9

At t = 1: v(1) = 9 − 24 + 9 = −6 m/s

The particle is moving in the negative direction at t = 1 s.

(b) Acceleration function:

a(t)=dvdt=18t24a(t) = \frac{dv}{dt} = 18t - 24

At t = 2: a(2) = 36 − 24 = 12 m/s²

(c) Particle at rest when v(t) = 0:

9t224t+9=09t^2 - 24t + 9 = 0 3t28t+3=03t^2 - 8t + 3 = 0 t=8±64366=8±286t = \frac{8 \pm \sqrt{64 - 36}}{6} = \frac{8 \pm \sqrt{28}}{6} t0.45 sandt2.22 st \approx 0.45 \text{ s} \quad \text{and} \quad t \approx 2.22 \text{ s}

The particle stops twice — once while moving in the negative direction, once while returning.


What to remember

The derivative is the instantaneous rate of change — what the average rate approaches as the interval shrinks to zero.

In kinematics: velocity is the derivative of position, acceleration is the derivative of velocity.

Differentiate polynomials term by term using the power rule: bring the exponent down, reduce it by one. Constants vanish.

The sign of the derivative tells you direction of change, not just magnitude.


The next article reverses the process: given acceleration, find velocity; given velocity, find position. That reverse operation is integration — and it opens the door to solving problems where acceleration is not constant, which is most of the real world.