Using this code
- sol := dsolve(diff(y(x), x) = x*(1-x)/(y(x)*(y(x)-2)), y(x));
- tplot := {seq(subs(_C1 = i, rhs(sol1)), i = -5 .. 5)};
- plot(tplot, x = -5 .. 5, y = -5 .. 5);
Generates this enter image description here How can I solve this problem? Using DEplot also generates "pieces" of needed graph (field itself is correct, though).
Here are a few ideas, using the explicit form:
[edit] I should mention that Maple's
dsolvecommand also allows for an implicit form of the solution.So perhaps you'd prefer this simpler approach: