+10 XP

Recap: The Equations of Change

πŸ”οΈ That's the Differential Equations summit. Two analogies carried the whole climb β€” let's tie them together.

What a differential equation is:
β€’ A rule for change β€” it gives the rate (dy/dt), not the value. Like a speedometer; solving it rebuilds the trip.
β€’ It's self-referential (change depends on the current state) β€” the Escher hands, the compound-interest loop.
β€’ Solve it analytically (exact formula, rare) or numerically (step-by-step, usually β€” next quest).

The bank-account warm-up (population):
β€’ dp/dt = Ξ±p β†’ solution p(t) = Pβ‚€Β·e^(Ξ±t) (exponential, because it's an eigenfunction).
β€’ Ξ± > 0 explodes, Ξ± < 0 decays, Ξ± = 0 is the equilibrium where nothing changes.

The leaky bucket (the LIF neuron):
β€’ τ·dV/dt = βˆ’(V βˆ’ E_L) + R_mΒ·I β€” leak pulls to rest E_L, input I pushes up.
β€’ No input β†’ always drifts back to the resting equilibrium.
β€’ Add a threshold + reset β†’ it spikes. More input β†’ faster firing.
β€’ The F–I curve = the transfer function, now derived from a real model. Its slope is gain.

Where it goes next: the population and LIF equations were the lucky ones β€” they had exact solutions. Most differential equations don't. The next quest, Numerical Methods, shows how a computer solves any of them step by step using Euler's method β€” which is just the Riemann sum you already know, wearing a new hat. πŸš€