+10 XP

A Rule for Change

A huge slice of neuroscience — ion channels, single neurons, whole networks, even decision-making — is written in one language: differential equations. They sound scary. They're not. A differential equation is just a rule for how something changes.

The key mental flip. Most equations you've seen give you a value: "y = 3x + 2" tells you where you are. A differential equation instead tells you how fast you're changing — and from that, you rebuild the whole story.

Think of a GPS / speedometer. Your car's speedometer never says "you'll be in Boston." It says "you're going 60 mph, heading north — right now." But if you know your speed at every instant, you can reconstruct the entire trip. A differential equation is the speedometer; solving it rebuilds the journey.

The general form of a first-order differential equation:

dy/dt = f(y, t)

Read it as: 'the rate of change of y over time is some function of y itself and of time t.'

Spot the weird part: the change in y depends on y itself. The thing describes itself. The source compares it to M.C. Escher's drawing of two hands sketching each other — each one drawing the other into being. That self-reference is exactly why differential equations are powerful (and sometimes hard to solve).

You already know one in real life: compound interest. How fast your savings grow depends on how much you already have. More money → more interest → even more money. That self-feeding loop is a differential equation, and we'll meet its twin in the very next lesson.

Two ways to actually solve one:
Analytically — find an exact formula (possible for simple ones, using integration tricks).
Numerically — when no exact formula exists (which is most of the time), approximate it step by step on a computer. That's the next quest (Euler's method), and it's built on the Riemann sum you already learned.