This notebook explores the connection between quantum mechanics and number theory, particularly focusing on the reconstruction of one-dimensional potentials from given energy levels. The process, known as the inverse eigenvalue problem, utilizes the “dressing transformation” technique to generate potentials capable of reproducing predefined energy spectra. Examples include potentials derived from prime numbers, Fibonacci sequences, and sets of composite numbers, illustrating the versatility of the method in exploring connections between quantum systems and number-theoretical sequences.
The inverse eigenvalue problem in quantum mechanics deals with the reconstruction of a potential based on a given set of energy levels. This notebook demonstrates the use of the “dressing transformation” technique, a method rooted in soliton theory, to tackle this problem. We showcase this method’s application by generating potentials corresponding to various number sequences, such as prime numbers, Fibonacci numbers, and composite numbers. These examples highlight the fascinating intersection of quantum mechanics and number theory.
This article A. Ramani, B. Grammaticos, and E. Caurier, Phys. Rev. E 51, 6323 – Published 1 June 1995, http://dx.doi.org/10.1103/PhysRevE.51.6323 shows reconstruction of fractal potentials from energy levels.
Defining a function to reconstruct a potential from a given list of energy levels (evals). The potential is constructed over a specified range (xMax) and uses numerical methods (NDSolveValue) to iteratively determine the potential that best reproduces the given energy levels.
This code calculates the first 20 eigenvalues of the Schrödinger equation with the generated potential (V). The finite element method is used for numerical solution, and a maximum cell measure of 0.01 is specified for the mesh. This step verifies that the reconstructed potential indeed reproduces the desired energy levels (the first 20 prime numbers).
Defining an alternative implementation of the dressingTransformationPotentials function. This implementation utilizes a different approach involving the solution of two coupled differential equations for functions ‘f’ and ‘g’ to construct the potential W.
The article Brandon P. van Zyl and David A. W. Hutchinson http://arxiv.org/abs/nlin/0304038 investigates the fractal nature of potentials reconstructed from the Riemann zeros and prime number sequences using two different inversion techniques. It concludes that both methods lead to the same fractal potential for a given set of energy levels, with a fractal dimension of 1.5 for the Riemann zeros and 1.8 for prime numbers.
Calculating the first 20 eigenvalues of the Schrödinger equation with the generated potential (V). This step verifies that the reconstructed potential indeed reproduces the desired energy levels (the first 20 prime numbers).
Generating a potential (V) corresponding to the list of composite numbers (compls). The potential is calculated over a range of 0 to 20.
V=dressingTransformationPotentials[compls,20];
Calculating the first 20 eigenvalues of the Schrödinger equation with the generated potential (V). This step confirms whether the reconstructed potential accurately reproduces the energy levels corresponding to the chosen composite numbers.
Visualizing both the generated potential (V) and the first 20 eigenfunctions of the Schrödinger equation, shifted downwards by 30 units to align with the potential. The plot highlights the relationship between the shape of the potential and the corresponding wavefunctions.
The first 10 eigenvalues of the Schrödinger equation with the generated potential (V). This step verifies whether the reconstructed potential accurately reproduces the energy levels corresponding to the first 10 Fibonacci numbers.
Cassettari, D., Marchukov, O. V., Carruthers, B., Kendell, H., Ruhl, J., Pierre, B. D. M., Zara, C., Weidner, C. A., Trombettoni, A., Olshanii, M., & Mussardo, G. (2024). Quantum dynamics of atoms in number-theory-inspired potentials (Version 1). arXiv. https://doi.org/10.48550/ARXIV.2410.13988
van Zyl, B. P., & Hutchinson, D. A. W. (2003). Riemann zeros, prime numbers, and fractal potentials. In Physical Review E (Vol. 67, Issue 6). American Physical Society (APS). https://doi.org/10.1103/physreve.67.066211
Ramani, A., Grammaticos, B., & Caurier, E. (1995). Fractal potentials from energy levels. In Physical Review E (Vol. 51, Issue 6, pp. 6323–6326). American Physical Society (APS). https://doi.org/10.1103/physreve.51.6323