|  |  D.6.6.8 IntersectionMatrix Procedure from librarycurvepar.lib(see  curvepar_lib).
 
Example:Usage:
IntersectionMatrix(i); i ideal
Assume:
i is the defining ideal of a (reducible) plane curve singularity.
Return:
intmat of the intersection multiplicities of the branches.
 |  | LIB "curvepar.lib";
ring r=0,(x,y),ds;
ideal i=x14-x4y7-y11;
IntersectionMatrix(i);
==> 0,1,1,1,7,
==> 0,0,1,1,7,
==> 0,0,0,1,7,
==> 0,0,0,0,7,
==> 0,0,0,0,0 
 | 
 
 |