Skip to content

Commit

Permalink
gh-36907: Implementation of the quantum oscillator algebra
Browse files Browse the repository at this point in the history
    
<!-- ^^^^^
Please provide a concise, informative and self-explanatory title.
Don't put issue numbers in there, do this in the PR body below.
For example, instead of "Fixes #1234" use "Introduce new method to
calculate 1+1"
-->
<!-- Describe your changes here in detail -->

We provide an implementation of the quantum oscillator algebra as
defined in a recent book of Kuniba. This has been used to construct
representations of the quantum coordinate rings for simple Lie algebras
and solutions to the Yang-Baxter, reflection, and tetrahedron equations.
We also implement its Fock space representation.

<!-- Why is this change required? What problem does it solve? -->
<!-- If this PR resolves an open issue, please link to it here. For
example "Fixes #12345". -->
<!-- If your change requires a documentation PR, please link it
appropriately. -->

### 📝 Checklist

<!-- Put an `x` in all the boxes that apply. -->
<!-- If your change requires a documentation PR, please link it
appropriately -->
<!-- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->
<!-- Feel free to remove irrelevant items. -->

- [x] The title is concise, informative, and self-explanatory.
- [x] The description explains in detail what this PR is about.
- [x] I have linked a relevant issue or discussion.
- [x] I have created tests covering the changes.
- [x] I have updated the documentation accordingly.

### ⌛ Dependencies

<!-- List all open PRs that this PR logically depends on
- #12345: short description why this is a dependency
- #34567: ...
-->

<!-- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->
    
URL: #36907
Reported by: Travis Scrimshaw
Reviewer(s): Frédéric Chapoton
  • Loading branch information
Release Manager committed Mar 21, 2024
2 parents 80a2744 + f6ae4ff commit 93066db
Show file tree
Hide file tree
Showing 4 changed files with 630 additions and 0 deletions.
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 @@ -61,6 +61,7 @@ Named associative algebras
sage/algebras/quantum_clifford
sage/algebras/quantum_groups/quantum_group_gap
sage/algebras/quantum_matrix_coordinate_algebra
sage/algebras/quantum_oscillator
sage/algebras/quatalg/quaternion_algebra
sage/algebras/rational_cherednik_algebra
sage/algebras/schur_algebra
Expand Down
5 changes: 5 additions & 0 deletions src/doc/en/reference/references/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4060,6 +4060,11 @@ REFERENCES:
study of the subgroups of the modular group", American
Journal of Mathematics 113 (1991), no 6, 1053-1133
.. [Kuniba2022] Atsuo Kuniba,
*Quantum Groups in Three-Dimensional Integrability*.
Theoretical and Mathematical Physics, Springer. 2022.
:doi:`10.1007/978-981-19-3262-5`.
.. [Kur2008] Chris Kurth, "K Farey package for Sage",
http://wayback.archive-it.org/855/20100510123900/http://www.public.iastate.edu/~kurthc/research/index.html
Expand Down
3 changes: 3 additions & 0 deletions src/sage/algebras/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
<sage.algebras.quantum_matrix_coordinate_algebra.QuantumGL>`
- :class:`algebras.QuantumMatrixCoordinate
<sage.algebras.quantum_matrix_coordinate_algebra.QuantumMatrixCoordinateAlgebra>`
- :class:`algebras.QuantumOscillator
<sage.algebras.quantum_oscillator.QuantumOscillatorAlgebra>`
- :class:`algebras.QSym <sage.combinat.ncsf_qsym.qsym.QuasiSymmetricFunctions>`
- :class:`algebras.Partition <sage.combinat.diagram_algebras.PartitionAlgebra>`
- :class:`algebras.PlanarPartition <sage.combinat.diagram_algebras.PlanarAlgebra>`
Expand Down Expand Up @@ -128,6 +130,7 @@
lazy_import('sage.combinat.ncsf_qsym.qsym', 'QuasiSymmetricFunctions', 'QSym')
lazy_import('sage.combinat.grossman_larson_algebras', 'GrossmanLarsonAlgebra', 'GrossmanLarson')
lazy_import('sage.algebras.quantum_clifford', 'QuantumCliffordAlgebra', 'QuantumClifford')
lazy_import('sage.algebras.quantum_oscillator', 'QuantumOscillatorAlgebra', 'QuantumOscillator')
lazy_import('sage.algebras.quantum_matrix_coordinate_algebra',
'QuantumMatrixCoordinateAlgebra', 'QuantumMatrixCoordinate')
lazy_import('sage.algebras.quantum_matrix_coordinate_algebra', 'QuantumGL')
Expand Down
Loading

0 comments on commit 93066db

Please sign in to comment.