|
D.4.5.7 IntAssOfDim2
Procedure from library ehv.lib (see ehv_lib).
- Usage:
- IntAssOfDim2(I,e); I ideal, e integer
- Return:
- ideal, the intersection of the associated primes of I having dimension e
Example:
| LIB "ehv.lib";
ring r = 0,(x,y,z),dp;
ideal I = intersect(ideal(z),ideal(x,y),ideal(x2,z2),ideal(x5,y5,z5));
IntAssOfDim2(I,1);
==> _[1]=x
==> _[2]=yz
|
|