Computation of dparz(z)

This section is basically the same as the previous one in execution.

> dparz1:=collect(subs(d(u)=0,dg),p);

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

The next three steps are a bit of 'sleight of hand' to get Maple to remove the appropriate terms... namely those with a p in the numerator, and no p's in the denominator.

> dparzromeo:=simplify(p*dparz1);

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

> dparzlist:=convert(dparzromeo,list);

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

> dparzjuliet:=remove(has,dparzlist,{p^2,p^3,p^4});

[Maple Math]
[Maple Math]

> dparz2:=convert(dparzjuliet,`+`)/p;

[Maple Math]
[Maple Math]

Now we simplify dparz2, set it equal to zero, and solve for d(z). This is the final step which gives us dparz(z).

> dparzz:=solve(dparz2=0,d(z));

[Maple Math]
[Maple Math]

>