|  |  D.6.10.7 CharacteristicExponents Procedure from librarycurvepar.lib(see  curvepar_lib).
 
Example:Usage:
CharacteristicExponents(i); i ideal
Assume:
i is the defining ideal of a (reducible) plane curve singularity.
Return:
list X of charts. Each chart contains the characteristic exponents
of the corresponding branch.
 |  | LIB "curvepar.lib";
ring r=0,(x,y),ds;
ideal i=x14-x4y7-y11;
CharacteristicExponents(i);
==> [1]:
==>    1
==> [2]:
==>    1
==> [3]:
==>    1
==> [4]:
==>    1
==> [5]:
==>    7,10
 | 
 
 |