Question: Plotting slope fields for a DE

I need to plot the slope field for this DE: (y'(x))^2 - 4*x*(y'(x)) + 4*y(x) = 0 I'm very new to Maple (tonight was my first time using it) and I'm not a good programmer, so any light you can shed on my problems would be much appreciated. This is what I tried: > with(DEtools); > eq := (diff(y(x), x))^2-4*x*(diff(y(x), x))+4*y(x) = 0; > DEplot(eq, y(x), x = -1 .. 1, y = -1 .. 5); And then I get this error: Error, (in DEtools/DEplot/CheckDE) unable to isolate DEs for required derivatives Thanks
Please Wait...