This function computes the ideal of a finite set of projective points by intersecting the ideals of each point.
i1 : R = QQ[x,y,z] o1 = R o1 : PolynomialRing |
i2 : M = transpose matrix{{1,0,0},{0,1,1}}
o2 = | 1 0 |
| 0 1 |
| 0 1 |
3 2
o2 : Matrix ZZ <--- ZZ
|
i3 : projectivePointsByIntersection(M,R)
o3 = {y - z, x*z}
o3 : List
|
The object projectivePointsByIntersection is a method function.