Hello, I've started learning how to numerically integrate ODE's and I've run aground when i posed a 2nd order system for mathematica.
Here is my initial code:
NDSolve = [{x'[t] == -y[t] - x[t]^2, y'[t]==x[t], x[0]==1, y[0]==0.5},{x,y},{t,0,30}]
and i get an error message saying the...