Macaulay2 » Documentation
Packages » MatrixSchubert :: augmentedEssentialSet
next | previous | forward | backward | up | index | toc

augmentedEssentialSet -- find the essential set of a partial alternating sign matrix or a permutation together with the rank conditions determining the alternating sign matrix variety

Synopsis

Description

Given a permutation in 1-line notation or a partial alternating sign matrix, returns the essential set together with the rank condition at each element of the set.

i1 : w = {2,5,4,1,3}

o1 = {2, 5, 4, 1, 3}

o1 : List
i2 : augmentedEssentialSet w

o2 = {((2, 4), 1), ((3, 1), 0), ((3, 3), 1)}

o2 : List
i3 : A = matrix{{0,1,0},{1,-1,0},{0,0,0}}

o3 = | 0 1  0 |
     | 1 -1 0 |
     | 0 0  0 |

              3       3
o3 : Matrix ZZ  <-- ZZ
i4 : augmentedEssentialSet A

o4 = {((1, 1), 0), ((3, 3), 1)}

o4 : List

Ways to use augmentedEssentialSet :

For the programmer

The object augmentedEssentialSet is a method function.