Is it possible to have a contour plot of an ode,
restart:with(plots);alpha:=1:
de1:=alpha*diff(f(y),y$4)+(diff(f(y),y$2)*diff(f(y),y$3)^2+diff(f(y),y$4)*diff(f(y),y$2)^2);
with such type of bcs?
bc1:= f(1+sin(x)) = .95, f(-.1-.1*sin(x)) = -.95, (D(f))(1+sin(x)) = -1, (D(f))(-.1-.1*sin(x)) = -1;
contourplot({de1,bc1}, [x,y, f(y)],x=1..10, y=1..10);
Thanks