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

SkewTableau ++ SkewTableau -- direct sum of tableaux

Description

The tableaux are combined into the disconnected components (not sharing an edge) of a single tableau.

i1 : T1 = skewTableau(new Partition from {5}, new Partition from {2})

             ┌───┬───┬───┐
o1 =         │   │   │   │
             └───┴───┴───┘

o1 : SkewTableau
i2 : T2 = skewTableau(new Partition from {3,2}, new Partition from {1}, {1,2,3,4})

         ┌───┬───┐
o2 =     │ 1 │ 2 │
     ┌───┼───┼───┘
     │ 3 │ 4 │    
     └───┴───┘    

o2 : SkewTableau
i3 : T1 ++ T2

                 ┌───┬───┬───┐
o3 =             │   │   │   │
         ┌───┬───┼───┴───┴───┘
         │ 1 │ 2 │            
     ┌───┼───┼───┘            
     │ 3 │ 4 │                
     └───┴───┘                

o3 : SkewTableau
i4 : T2 ++ T1

                             ┌───┬───┐
o4 =                         │ 1 │ 2 │
                         ┌───┼───┼───┘
                         │ 3 │ 4 │    
             ┌───┬───┬───┼───┴───┘    
             │   │   │   │            
             └───┴───┴───┘            

o4 : SkewTableau

See also

Ways to use this method:


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