########################################################### # 2nd order Quadratic system # ########################################################### # # ########################################################### # Problem definition ########################################################### # # # p a11=0,a12=1,a21=1,a22=0 p b20=0,b11=0,b02=0 p c20=-1,c11=0,c02=0 p cx=0,cy=0 # # differential equations # x'=cx+a11*x+a12*y+b20*x^2+b11*x*y+b02*y^2 y'=cy+a21*x+a22*y+c20*x^2+c11*x*y+c02*y^2 # # initial conditions (optional) # x(0)=1 y(0)=1 # @ total=10,xlo=-2,xhi=2,ylo=-2,yhi=2,dt=0.005 # d