Tableaux |
Example: The tableauBut you can also have TABLEAUX whose shape is of type SKEWPARTITION. Please note the following:3
2 3
1 2 3
is the MATRIXobject
[1:2:3]
[2:3:#]
[3:#:#]
and the shape is the PARTITION 123.
Example: Here is an example:If you have the corresponding program compiled, then, after entering a.out you will first be asked if its shape is a proper partition or a skew partition, you have to reply that question either by P or by S. If you intend to enter a partition, then you will first be asked for its length, and then for the partition, as you know. After that you will be asked for the entries of the first row. Recall the above quotation: If you want the shape to be the partition 2 3 of 5, say, then that first row will be the row of length 3.... scan(TABLEAUX,a); println(a); ...
For example, if you want to enter the above tableau, you will successively have to enter the following lines:
P
3
1 2 3
1 2 3
2 3
3
For further information you should also compare the file kostka.doc.
Tableaux |