Differential Equations
Second-Order ODEs
November 7, 1940. Washington State. Tacoma Narrows Bridge sways in 64 km/h winds and collapses four hours later. NeurIPS 2018, Montreal. Neural ODE reshapes neural architecture by showing that ResNet is an Euler solver for $dh/dt = f(h, t, \theta)$. Both events are described by the same equation $y'' + ay' + by = f(x)$. The only difference is whether the right-hand side destroys the system - or trains it.
- **Neural ODE (Chen et al. NeurIPS 2018):** hidden state as a continuous ODE. ResNet is a special case with Euler step delta_t=1. Understanding second-order dynamics explains why this works
- **Diffusion models (DDPM, Stable Diffusion, FLUX):** the forward process adds noise via a stochastic ODE. Reverse generation is integration of the reverse ODE. ODE theory is unavoidable in understanding the architecture
- **Kalman filter:** optimal filter for linear ODEs with Gaussian noise. Used in GPS, Tesla Autopilot, Boston Dynamics robots for sensor fusion
- **Structural engineering:** seismic analysis of buildings - second-order ODE with periodic forcing. Every skyscraper is a solved resonance problem
Предварительные знания
The Characteristic Equation
NeurIPS 2018, Montreal. Tian Qi Chen presents Neural ODE - a continuous neural network where the hidden state evolves according to the differential equation $dh/dt = f(h, t, \theta)$. ResNet is a discretized version of this very equation: $h_{t+1} = h_t + F(h_t)$ is an Euler step with $\Delta t = 1$. One insight - and a discrete architecture becomes a numerical ODE solver. To understand why it works, one must first understand the second order.