Macaulay2 » Documentation
Packages » Tableaux :: SkewTableau _ Sequence
next | previous | forward | backward | up | index | toc

SkewTableau _ Sequence -- get the entry at a specific position.

Description

The notations (T^i)#j, (T_j)#i, and T_(i,j) are all equivalent for valid positions (i,j). However, the notation T_(i,j) will raise an error for nonvalid positions, whereas the other two will return null.

i1 : T = skewTableau(new Partition from {4,3,1,0}, new Partition from {1,1}, {1,2,3,4,5,6})

         ┌───┬───┬───┐
o1 =     │ 1 │ 2 │ 3 │
         ├───┼───┼───┘
         │ 4 │ 5 │    
     ┌───┼───┴───┘    
     │ 6 │            
     └───┘            

o1 : SkewTableau
i2 : (T^0)#1

o2 = 1
i3 : (T_1)#0

o3 = 1
i4 : T_(0,1)

o4 = 1

See also

Ways to use this method:


The source of this document is in Tableaux/documentation.m2:550:0.