Skip to content

Commit c6c2b85

Browse files
author
Release Manager
committed
Trac #33974: Documentation addition for symmetric functions - Cauchy identity
Include an example of how to use plethysm and tensor product of symmetric functions in two sets of variables to verify the Cauchy identities. URL: https://trac.sagemath.org/33974 Reported by: tkarn Ticket author(s): Trevor K. Karn Reviewer(s): Travis Scrimshaw
2 parents f92916e + 491bc00 commit c6c2b85

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/sage/combinat/sf/sfa.py

+11
Original file line numberDiff line numberDiff line change
@@ -3039,6 +3039,17 @@ def plethysm(self, x, include=None, exclude=None):
30393039
sage: s[1,1,1](X*Y)
30403040
s[1, 1, 1] # s[3] + s[2, 1] # s[2, 1] + s[3] # s[1, 1, 1]
30413041
3042+
One can use this to work with symmetric functions in two sets of
3043+
commuting variables. For example, we verify the Cauchy identities (in
3044+
degree 5)::
3045+
3046+
sage: m = SymmetricFunctions(QQ).m()
3047+
sage: P5 = Partitions(5)
3048+
sage: sum(s[mu](X)*s[mu](Y) for mu in P5) == sum(m[mu](X)*h[mu](Y) for mu in P5)
3049+
True
3050+
sage: sum(s[mu](X)*s[mu.conjugate()](Y) for mu in P5) == sum(m[mu](X)*e[mu](Y) for mu in P5)
3051+
True
3052+
30423053
.. SEEALSO::
30433054
30443055
:meth:`frobenius`

0 commit comments

Comments
 (0)