Example: Solve .
> M:=(x,y)->y^2+2*x*y+1;N:=(x,y)->2*x*y+x^2+2;
To check that this is an exact differential equation;
> diff(M(x,y),y)-diff(N(x,y),x);
Hence the equation is exact so we can use Ex operator.
> Ex;