It's possible to solve differential equations in 140 characters of javascript, here are some (e.g. Lorenz Attractor dynamical system "chaos butterfly") that generates 3D cool graphics and really solves ordinary differential equations (ODEs): https://www.dwitter.net/h/lorenz/top
Here is one short code example using Euler's method where Y(n+1) = Yn + step_size * f(Xn,Yn,Zn)