1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
COMMENT:
MISCellaneous-Functions
-----------------------
NAME:
complete_complete_plet
SYNOPSIS:
INT complete_complete_plet(OP a, OP b, OP c)
DESCRIPTION:
Computes the plethysm of two complete symmetric functions labeled
by INTEGER objects. The first parameter is the outer one, so we
compute h_a(h_b). The result is a SCHUR object.
EXAMPLE:
#include "def.h"
#include "macro.h"
ANFANG
scan(INTEGER,a);
scan(INTEGER,b);
complete_complete_plet(a,b,c);
println(c);
ENDE
NAME:
complete_schur_plet
SYNOPSIS:
INT complete_schur_plet(OP a, OP b, OP c)
DESCRIPTION:
Computes the plethysm of a complete symmetric function labeled by
the INTEGER object a and the Schurfunction labeled by the INTEGER
or PARTITION object b. The result will be a SCHUR function c. The
complete function is the outer one, so we compute h_a(s_b)
EXAMPLE
#include "def.h"
#include "macro.h"
ANFANG
scan(INTEGER,a);
scan(PARTITION,b);
complete_schur_plet(a,b,c);
println(c);
ENDE
NAME:
elementary_schur_plet
SYNOPSIS:
INT elementary_schur_plet(OP a, OP b, OP c)
DESCRIPTION:
Computes the plethysm of a elementary symmetric function labeled by
the INTEGER object a and the Schurfunction labeled by the INTEGER
or PARTITION object b. The result will be a SCHUR function c. The
elementary function is the outer one, so we compute e_a(s_b).
EXAMPLE:
#include "def.h"
#include "macro.h"
ANFANG
scan(INTEGER,a);
scan(PARTITION,b);
elementary_schur_plet(a,b,c);
println(c);
ENDE
NAME:
power_schur_plet
SYNOPSIS:
INT power_schur_plet(OP a, OP b, OP c)
DESCRIPTION:
Computes the plethysm of a power symmetric function labeled by
the INTEGER object a and the Schurfunction labeled by the INTEGER
or PARTITION object b. The result will be a SCHUR function c. The
complete function is the outer one, so we compute p_a(s_b).
EXAMPLE:
#include "def.h"
#include "macro.h"
ANFANG
scan(INTEGER,a);
scan(PARTITION,b);
power_schur_plet(a,b,c);
println(c);
ENDE
NAME:
schur_schur_plet
SYNOPSIS:
INT schur_schur_plet(OP a, OP b, OP c)
DESCRIPTION:
Computes the plethysm of two Schurfunctions labeled by a PARTITION
object or by an INTEGER object. The first parameter is the outer one,
so we compute s_a(s_b). The result is a SCHUR object.
EXAMPLE:
#include "def.h"
#include "macro.h"
ANFANG
scan(PARTITION,a);
scan(PARTITION,b);
schur_schur_plet(a,b,c);
println(c);
ENDE
|