[Physics] Calculating L^2 operator in spherical coordinates

angular momentumhomework-and-exercisesquantum mechanics

I found this development for the calculation of angular momentum L^2 operator in spherical coordinates. The image attached shows the latest step of this. I cannot figure out the algebra between these 2 latest steps. The term grayed out vanishes, but I can't see how the the first three ones become the final resultant expression.

Any help? Thanks!

enter image description here

Best Answer

There are two things going on in the last step. Let's take care of the simpler one first. The third term reduces thanks to a trigonometric identity: $$ -\hbar^2 \left ( 1 + \frac{\cos^2 \theta}{\sin^2 \theta} \right ) \frac{\partial^2}{\partial \varphi^2} = -\hbar^2 \frac{\sin^2 \theta + \cos^2 \theta}{\sin^2 \theta} \frac{\partial^2}{\partial \varphi^2} = -\hbar^2 \frac{1}{\sin^2 \theta} \frac{\partial^2}{\partial \varphi^2} $$

The first two terms are more interesting, and simplifying them involves recognizing something really cool: operator notation. $L^2$ is, as you know, an operator, not a number or a function, because it takes in functions and returns functions. If a mathematician were to classify it, they might say $L^2 \in \mathrm{Map}(\mathrm{Map}(\mathbb C,\mathbb C),\mathrm{Map}(\mathbb C,\mathbb C)) $. (Of course a mathematician could classifiy it more strictly, but that's not important now.) Now, in a lot of ways the rules for algebra with operators are the same as for numbers or functions, but there is one important caveat. You can't deal with other operators, particularly differential operators, in the same way. To get things right, it helps immensely to write the expression as if it were applied to a function. For example, the first two terms, $$ -\hbar^2 \frac{\partial^2}{\partial \theta^2} -\hbar^2 \frac{\cos\theta}{\sin\theta}\frac{\partial}{\partial \theta} $$ become $$ -\hbar^2 \frac{\partial^2 \Psi}{\partial \theta^2} -\hbar^2 \frac{\cos\theta}{\sin\theta}\frac{\partial \Psi}{\partial \theta} $$ Now this expression describes a function, not an operator, and for people used to normal calculus notation, this is much easier to deal with without making mistakes. Let's factor some things out. $$ -\hbar^2 \frac{\partial^2 \Psi}{\partial \theta^2} -\hbar^2 \frac{\cos\theta}{\sin\theta}\frac{\partial \Psi}{\partial \theta} = -\hbar^2 \frac 1{\sin\theta} \left( \sin \theta \frac{\partial^2 \Psi}{\partial \theta^2} + \cos\theta \frac{\partial \Psi}{\partial \theta} \right ) $$ Do you see it yet? The last step is just the product rule! $$ -\hbar^2 \frac 1{\sin\theta} \left( \sin \theta \frac{\partial^2 \Psi}{\partial \theta^2} + \cos\theta \frac{\partial \Psi}{\partial \theta} \right ) = -\hbar^2 \frac 1{\sin\theta} \frac{\partial}{\partial \theta} \left( \sin \theta \frac{\partial \Psi}{\partial \theta} \right ) $$ Then, to get back to operator notation, one simply doesn't write $\Psi$, because it was a generic function all along.

Indulge me for one more simple example, so that I may illustrate how subtle the difference between operators and functions can be. Take two operators, $A = \frac{\partial}{\partial \theta}$ and $B = \sin \theta$. What is their composite, $AB$? The naïve answer is "$\cos \theta$", which is incorrect. To arrive at the correct answer, we must recognize that $B$ is not a function, it is an operator. It is always implied that $B \Psi = \sin \theta \Psi$, even though no operator appears to be written. The correct answer to my question follows from the product rule: $$ AB = \cos \theta + \sin \theta \frac{\partial}{\partial \theta} $$ Go ahead and verify it for yourself by writing it with a test function instead of as an operator.