Skip to content

Commit

Permalink
Trac #26440: Fusion algebras from Weyl Character Rings
Browse files Browse the repository at this point in the history
Fusion algebras for WZW conformal field theories can be computed easily
as instances of WeylCharacterRings. The `WeylCharacterRing` code is
modified with an optional parameter k, the level. If `k==None` the
behavior is unchanged. However if k is a positive integer the
corresponding fusion ring is created. The reason this works is that the
Kac-Walton algorithm for computing the fusion products is closely
similar to the Brauer-Klimyk (aka Racah-Speiser) algorithm that is
already used by the `WeylCharacterRing`. One has only to add an affine
reflection to make the algorithm compute the fusion product.

I tested this for level 2 in types A2 and B2, comparing with tabulated
formulas in Feingold, Fusion Rules for affine Kac-Moody algebras.

A related patch is #15485.

URL: https://trac.sagemath.org/26440
Reported by: bump
Ticket author(s): Daniel Bump
Reviewer(s): Travis Scrimshaw
  • Loading branch information
Release Manager authored and vbraun committed Oct 28, 2018
2 parents b0f87a6 + 7546a0d commit b95610e
Show file tree
Hide file tree
Showing 3 changed files with 293 additions and 9 deletions.
15 changes: 15 additions & 0 deletions src/doc/en/reference/references/index.rst
Expand Up @@ -1009,6 +1009,10 @@ REFERENCES:
.. [Dev2005] Devaney, Robert L. *An Introduction to Chaotic Dynamical Systems.*
Boulder: Westview, 2005, 331.
.. [DFMS1996] Philipppe Di Francesco, Pierre Mathieu, and David Sénéchal.
*Conformal Field Theory*. Graduate Texts in Contemporary
Physics, Springer, 1996.
.. [DG1982] Louise Dolan and Michael Grady.
*Conserved charges from self-duality*,
Phys. Rev. D(3) **25** (1982), no. 6, 1587-1604.
Expand Down Expand Up @@ -1244,6 +1248,10 @@ REFERENCES:
.. [Fed2015] Federal Agency on Technical Regulation and Metrology (GOST),
GOST R 34.12-2015, (2015)
.. [Feingold2004] Alex J. Feingold. *Fusion rules for affine Kac-Moody algebras*.
Contemp. Math., **343** (2004), pp. 53-96.
:arXiv:`math/0212387`
.. [Feu2009] \T. Feulner. The Automorphism Groups of Linear Codes and
Canonical Representatives of Their Semilinear Isometry
Classes. Advances in Mathematics of Communications 3 (4),
Expand Down Expand Up @@ -1331,6 +1339,10 @@ REFERENCES:
*Young Tableaux*.
Cambridge University Press, 1997.
.. [Fuchs1994] \J. Fuchs. *Fusion Rules for Conformal Field Theory*.
Fortsch. Phys. **42** (1994), no. 1, pp. 1-48.
:doi:`10.1002/prop.2190420102`, :arXiv:`hep-th/9306162`.
.. [FY2004] Eva Maria Feichtner and Sergey Yuzvinsky. *Chow rings of
toric varieties defined by atomic lattices*. Inventiones
Mathematicae. **155** (2004), no. 3, pp. 515-536.
Expand Down Expand Up @@ -3371,6 +3383,9 @@ REFERENCES:
Math. Combin. Comput. **36** (2001), 95-118.
http://www.info2.uqam.ca/~walsh_t/papers/Involutions%20paper.pdf
.. [Walton1990] Mark A. Walton. *Fusion rules in Wess-Zumino-Witten models*.
Nuclear Phys. B **340** (1990).
.. [Wam1999] van Wamelen, Paul. *Examples of genus two CM curves defined
over the rationals*. Math. Comp. 68 (1999), no. 225, 307--320.
Expand Down
3 changes: 2 additions & 1 deletion src/sage/combinat/root_system/all.py
Expand Up @@ -19,7 +19,8 @@
'ExtendedAffineWeylGroup')
lazy_import('sage.combinat.root_system.coxeter_group', 'CoxeterGroup')
lazy_import('sage.combinat.root_system.weyl_characters', ['WeylCharacterRing',
'WeightRing'])
'WeightRing',
'FusionRing'])
from .branching_rules import BranchingRule, branching_rule_from_plethysm, branching_rule

lazy_import('sage.combinat.root_system.non_symmetric_macdonald_polynomials', 'NonSymmetricMacdonaldPolynomials')
Expand Down

0 comments on commit b95610e

Please sign in to comment.