Macaulay2 » Documentation
Packages » replacements for functions from version 1.0 > localComplement
next | previous | forward | backward | up | index | toc

localComplement -- find the splitting of the target of a map

Synopsis

Description

The function finds a splitting of the target of m as a direct sum of the image of m and the image of the output.
i1 : R = ZZ/32003[x,y]

o1 = R

o1 : PolynomialRing
i2 : m = matrix{{x,y-1},{0,x}}

o2 = | x y-1 |
     | 0 x   |

             2      2
o2 : Matrix R  <-- R
i3 : setMaxIdeal(ideal(x,y))

o3 = ideal (x, y)

o3 : Ideal of R
i4 : localComplement m

o4 = | 0 |
     | 1 |

             2      1
o4 : Matrix R  <-- R

See also

Ways to use localComplement :

For the programmer

The object localComplement is a method function.