up previous next
Computes the differential order of a differential polynomial.
Computes the differential order of the differential polynomial F. The differential order is the maximum order of the derivatives occuring in the terms of F.
- @param F A differential polynomial.
- @return Order of F.
Use QQ[x[1..2,0..20]];
F:=x[1,4]^2-x[2,4]^3;
DA.DiffOrd(F);
-------------------------------
4
-------------------------------
|