Skip to content

Commit 2c7f4cd

Browse files
committed
Implementing the quantum oscillator algebra.
1 parent cb8e15b commit 2c7f4cd

File tree

4 files changed

+631
-0
lines changed

4 files changed

+631
-0
lines changed

src/doc/en/reference/algebras/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Named associative algebras
6161
sage/algebras/quantum_clifford
6262
sage/algebras/quantum_groups/quantum_group_gap
6363
sage/algebras/quantum_matrix_coordinate_algebra
64+
sage/algebras/quantum_oscillator
6465
sage/algebras/quatalg/quaternion_algebra
6566
sage/algebras/rational_cherednik_algebra
6667
sage/algebras/schur_algebra

src/doc/en/reference/references/index.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4060,6 +4060,11 @@ REFERENCES:
40604060
study of the subgroups of the modular group", American
40614061
Journal of Mathematics 113 (1991), no 6, 1053-1133
40624062
4063+
.. [Kuniba2022] Atsuo Kuniba,
4064+
*Quantum Groups in Three-Dimensional Integrability*.
4065+
Theoretical an Mathematical Phyiscs, Springer. 2022.
4066+
:doi:`10.1007/978-981-19-3262-5`.
4067+
40634068
.. [Kur2008] Chris Kurth, "K Farey package for Sage",
40644069
http://wayback.archive-it.org/855/20100510123900/http://www.public.iastate.edu/~kurthc/research/index.html
40654070

src/sage/algebras/catalog.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
<sage.algebras.quantum_matrix_coordinate_algebra.QuantumGL>`
6060
- :class:`algebras.QuantumMatrixCoordinate
6161
<sage.algebras.quantum_matrix_coordinate_algebra.QuantumMatrixCoordinateAlgebra>`
62+
- :class:`algebras.QuantumOscillator
63+
<sage.algebras.quantum_oscillator.QuantumOscillatorAlgebra>`
6264
- :class:`algebras.QSym <sage.combinat.ncsf_qsym.qsym.QuasiSymmetricFunctions>`
6365
- :class:`algebras.Partition <sage.combinat.diagram_algebras.PartitionAlgebra>`
6466
- :class:`algebras.PlanarPartition <sage.combinat.diagram_algebras.PlanarAlgebra>`
@@ -128,6 +130,7 @@
128130
lazy_import('sage.combinat.ncsf_qsym.qsym', 'QuasiSymmetricFunctions', 'QSym')
129131
lazy_import('sage.combinat.grossman_larson_algebras', 'GrossmanLarsonAlgebra', 'GrossmanLarson')
130132
lazy_import('sage.algebras.quantum_clifford', 'QuantumCliffordAlgebra', 'QuantumClifford')
133+
lazy_import('sage.algebras.quantum_oscillator', 'QuantumOscillatorAlgebra', 'QuantumOscillator')
131134
lazy_import('sage.algebras.quantum_matrix_coordinate_algebra',
132135
'QuantumMatrixCoordinateAlgebra', 'QuantumMatrixCoordinate')
133136
lazy_import('sage.algebras.quantum_matrix_coordinate_algebra', 'QuantumGL')

0 commit comments

Comments
 (0)