{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# More Fun with Coherent States\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We've seen coherent states in the context of the quantum harmonic oscillator as well as for quantum spins. It's worth thinking about an even simpler example. I follow the excellent work of J. P. Gazeau in what follows.\n", "\n", "We'll be taking as our Hilbert space the circle, in fact, ultimately, the circle with opposite points identified. In other words: the space of oriented lines in the plane. This is a two-dimensional *real* Hilbert space.\n", "\n", "For example, we all know we can specify a point on a 2D plane in terms of $x$ and $y$ coordinates. Since we're restricting to the unit circle, we could also parameterize the point solely by its angle: $\\theta$. \n", "\n", "We could take as our basis vectors $\\mid 0 \\rangle = \\begin{pmatrix} 1 \\\\ 0 \\end{pmatrix}$ and $\\mid \\frac{\\pi}{2} \\rangle = \\begin{pmatrix} 0 \\\\ 1 \\end{pmatrix}$.\n", "\n", "The notation $\\mid \\theta \\rangle$ means a unit vector with angle $\\theta$, between $0$ and $2\\pi$. Our two basis states clearly resolve the identity:\n", "\n", "$I = \\mid 0 \\rangle \\langle 0 \\mid + \\mid \\frac{\\pi}{2} \\rangle \\langle \\frac{\\pi}{2} \\mid$\n", "\n", "$\\begin{pmatrix} 1 & 0 \\\\ 0 & 1 \\end{pmatrix} = \\begin{pmatrix} 1 & 0 \\\\ 0 & 0 \\end{pmatrix} + \\begin{pmatrix} 0 & 0 \\\\ 0 & 1 \\end{pmatrix}$.\n", "\n", "We could then write $\\mid \\theta \\rangle = cos \\theta \\mid 0 \\rangle + sin \\theta \\mid \\frac{\\pi}{2} \\rangle$.\n", "\n", "Naturally, $cos^{2} \\theta + sin^{2} \\theta = 1$, so the squares of the amplitudes give us our probabilities, which sum to $1$ as is customary.\n", "\n", "The projector corresponding to a state $\\mid \\theta \\rangle$ would be:\n", "\n", "$\\mid \\theta \\rangle \\langle \\theta \\mid = \\begin{pmatrix} cos \\theta \\\\ sin \\theta \\end{pmatrix} \\begin{pmatrix} cos \\theta & sin \\theta \\end{pmatrix} = \\begin{pmatrix} cos^{2} \\theta & cos \\theta sin \\theta \\\\ cos \\theta sin \\theta & sin^{2} \\theta \\end{pmatrix}$\n", "\n", "Another way of specifying this projector is with:\n", "\n", "$P_{\\theta} = R(\\theta)\\mid 0 \\rangle \\langle 0 \\mid R(-\\theta)$\n", "\n", "Here, $R(\\theta)$ is an $SO(2)$ matrix: $\\begin{pmatrix} cos \\theta & - sin \\theta \\\\ sin \\theta & cos \\theta \\end{pmatrix}$, which implements a rotation in the plane by $\\theta$ degrees." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "