-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from XanaduAI/new_docs_hermite
New docs hermite
- Loading branch information
Showing
8 changed files
with
286 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.. role:: raw-latex(raw) | ||
:format: latex | ||
|
||
.. role:: html(raw) | ||
:format: html | ||
.. _hermite: | ||
|
||
|
||
Multidimensional Hermite polynomials | ||
==================================== | ||
.. sectionauthor:: Nicolás Quesada <nicolas@xanadu.ai> | ||
|
||
In this section we study the multidimensional Hermite polynomials. These polynomials where originally introduced by C. Hermite in 1865. Mizrahi :cite:`mizrahi1975generalized` provides an exhaustive reference on these subject. We however, follow the succinct treatment of Kok and Braunstein :cite:`kok2001multi`. | ||
|
||
In the next section, where we discuss Gaussian states we will explain how these polynomials relate to hafnians and loop hafnians. For the moment just let us introduce them and study their formal properties. | ||
|
||
Generating function definition | ||
****************************** | ||
Given two complex vectors :math:`\alpha,\beta \in \mathbb{C}^\ell` and a symmetric matrix :math:`\mathbf{B} = \mathbf{B}^T \in \mathbb{C}^{\ell \times \ell}`, | ||
|
||
.. math:: | ||
G_B(\alpha,\beta) = \exp\left( \alpha \mathbf{B} \beta^T - \tfrac{1}{2}\beta \mathbf{B} \beta^T\right) = \sum_{\mathbf{m} \geq \mathbf{0}} \prod_{i=1}^{\ell} \frac{\beta_i^{n_i}}{n_i} H_{\mathbf{m}}^{(\mathbf{B})}(\alpha), | ||
where the notation :math:`\mathbf{m} \geq 0` is used to indicate that the sum goes over all vectors in :math:` \mathbb{N}^{\ell}_0` (the set of vectors of nonnegative integers of size :math:`\ell`). This generating function provides an implicit definition of the multidimensional Hermite polynomials. | ||
It is also straightforward to verify that :math:`H_{\mathbf{0}}^{(\mathbf{B})}(\alpha) = 1`. | ||
|
||
In the one dimensional case, :math:`\ell=1`, one can compare the generating function above with the ones for the "probabilists' Hermite polynomials" :math:`He_n(x)` and "physicists' Hermite polynomials" :math:`H_n(x)` to find | ||
|
||
.. math:: | ||
He_n(x) = H_{n}^{([1])}(x), \\ | ||
H_n(x) = H_{n}^{([2])}(x). | ||
.. tip:: | ||
The multidimensional Hermite polynomials are *Implemented as* :func:`hafnian.hermite_multidimensional`. | ||
|
||
|
||
Recursion relation | ||
****************** | ||
Based on the generating function introduced in the previous section one can derive the following recursion relation | ||
|
||
.. math:: | ||
H_{\mathbf{m}+\mathbf{e}_i}^{(\mathbf{B})}(\alpha) - \sum_{j=1}^\ell B_{i,j} \alpha_j H_{\mathbf{m}}^{(\mathbf{B})}(\alpha) + \sum_{j=1}^\ell B_{i,j} m_j H_{\mathbf{m}-\mathbf{e}_j}^{(\mathbf{B})}(\alpha) = 0, | ||
where :math:`\mathbf{e}_j` is a vector with zeros in all its entries except in the :math:`i^{\text{th}}` element. | ||
|
||
|
||
|
||
|
||
From this recursion relation, or by Taylor expanding the generating function, one easily finds | ||
|
||
.. math:: | ||
H_{\mathbf{e}_i}^{(\mathbf{B})}(\alpha) = \sum_{j=1}^\ell B_{ij} \alpha_j. | ||
Using this recursion relation one can calculate all the multidimensional Hermite polynomials up to a given cutoff. | ||
|
||
|
||
The connection between the multidimensional Hermite polynomials and **pure** Gaussian states was reported by Wolf :cite:`wolf1974canonical`, and later by Kramer, Moshinsky and Seligman :cite:`kramer1975group`. This same connection was also pointed out by Doktorov, Malkin and Man'ko in the context of vibrational modes of molecules :cite:`doktorov1977dynamical`. | ||
Furthermore, this connection was later generalized to **mixed** Gaussian states by Dodonov, Man'ko and Man'ko :cite:`dodonov1994multidimensional`. |
Oops, something went wrong.