Loading...
Loading...
Loading Curriculum...
Loading Subject...
Loading Topic...
Loading Lesson...
Loading Lab...
Differential equations describe systems that change over time using relationships between a function and its derivatives. They appear in ML when modeling dynamics (physics, robotics, time series) and in modern approaches like neural ODEs.
Exponential growth/decay is modeled by:
dy/dt = k yIts solution is y(t) = y(0) e^{kt}. This pattern shows up in decay processes and continuous-time hidden states.
A neural ODE defines dynamics with a neural network:
dz/dt = f(z, t; θ)Given an initial state z(t₀), we integrate forward to get z(t₁). Training adjusts θ so the resulting trajectories fit data.