Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement down-up algebras and their Verma modules #35484

Merged
merged 8 commits into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/doc/en/reference/algebras/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Named associative algebras
sage/algebras/clifford_algebra
sage/algebras/cluster_algebra
sage/combinat/descent_algebra
sage/algebras/down_up_algebra
fusion_rings
sage/algebras/hall_algebra
sage/combinat/posets/incidence_algebras
Expand Down
8 changes: 8 additions & 0 deletions src/doc/en/reference/references/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,10 @@ REFERENCES:
Achtzelle (Oktatope)", Verhand. Konik. Akad. Wetenschap,
Erste Sectie, 10 (1910)

.. [BR1998] Georgia Benkart and Tom Roby. *Down-up algebras*.
J. Algebra, **209** no. 1 (1999), pp. 305-335.
:doi:`10.1006/jabr.1998.7511`.

.. [Br2000] Kenneth S. Brown, *Semigroups, rings, and Markov chains*,
:arxiv:`math/0006145v1`.

Expand Down Expand Up @@ -1615,6 +1619,10 @@ REFERENCES:
\J. Algebr. Comb. **39** (2014) pp. 17-51.
:doi:`10.1007/s10801-013-0437-x`, :arxiv:`1108.1776`.

.. [CM2000] Paula A.A.B. Carvalho and Ian M. Musson. *Down-up algebras and
their representation theory*. J. Algebra. **228** no. 1, (2000),
pp. 286-310. :doi:`10.1006/jabr.1999.8263`

.. [CM2012] \M. Cabanes, I. Marin, *On ternary quotients of cubic Hecke
algebras*, Comm. Math. Phys. (2012), Volume 314, Issue 1,
pp 57-92. :doi:`10.1007/s00220-012-1519-7`, :arxiv:`1010.1465`.
Expand Down
2 changes: 2 additions & 0 deletions src/sage/algebras/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- :class:`algebras.Descent <sage.combinat.descent_algebra.DescentAlgebra>`
- :class:`algebras.DifferentialWeyl
<sage.algebras.weyl_algebra.DifferentialWeylAlgebra>`
- :class:`algebras.DownUp <sage.algebras.down_up_algebra.DownUpAlgebra>`
- :class:`algebras.Exterior <sage.algebras.clifford_algebra.ExteriorAlgebra>`
- :class:`algebras.FiniteDimensional
<sage.algebras.finite_dimensional_algebras.finite_dimensional_algebra.FiniteDimensionalAlgebra>`
Expand Down Expand Up @@ -134,6 +135,7 @@
lazy_import('sage.algebras.quantum_groups.quantum_group_gap', 'QuantumGroup')
lazy_import('sage.algebras.quantum_groups.ace_quantum_onsager',
'ACEQuantumOnsagerAlgebra', 'AlternatingCentralExtensionQuantumOnsager')
lazy_import('sage.algebras.down_up_algebra', 'DownUpAlgebra', 'DownUp')
lazy_import('sage.algebras.yangian', 'Yangian')

del lazy_import # We remove the object from here so it doesn't appear under tab completion
Loading