A classic example in quantum mechanics is the infamous particle in a box. This basically refers to a particle trapped in a region of space bound by insurmountable potentials.
Because it is a bound state, a particle trapped in a 3 dimensional cubic box will have a given quantized energy based on three quantum numbers ( three integers > 0 ) : n x , n y and n z . This energy is given by
E n x , n y , n z = 2 m L 2 π 2 ℏ 2 ( n x 2 + n y 2 + n z 2 )
where L is the side length of the cube and m is the mass of the particle.
Because of this, a given energy can be described by different quantum numbers. For example E 1 , 2 , 1 and E 2 , 1 , 1 will have the same energy for different values of n x , n y and n z . Such a state is called degenerate . Our 3 D box has many of these degenerate energies because of the symmetry of a cube.
Suppose we have an electron trapped in a 0 . 5 m box . Suppose the energy under 2 . 2 6 5 3 6 × 1 0 − 3 4 Joules that has the most degenerate states is A. What is ⌊ A × 1 0 3 7 ⌋ ?
Examples
Details and assumptions
For physics reasons, only p o s i t i v e quantum numbers are allowed: n x , n y , n z ≥ 1 .
0 is not a quantum number for a particle in a box as quantum numbers are always positive.
No knowledge of QM is needed to solve this problem
The mass of an electron is 9 . 1 0 9 3 8 3 × 1 0 − 3 1 k g
ℏ is the reduced Plank constant ℏ = 2 π h = 1 . 0 5 4 5 7 2 × 1 0 − 3 4 where h is Plank's constant.
Picture is not to scale.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I think the winner is really
8 5 4 = 1 2 + 1 8 2 + 2 3 2 = 2 2 + 3 2 + 2 9 2 = 2 2 + 1 1 2 + 2 7 2 = 2 2 + 1 5 2 + 2 5 2 = 3 2 + 1 3 2 + 2 6 2 = 3 3 + 1 9 2 + 2 2 2 = 5 2 + 1 0 2 + 2 7 2 = 6 2 + 1 7 2 + 2 3 2 = 9 2 + 1 7 2 + 2 2 2 = 1 0 2 + 1 5 2 + 2 3 2 = 1 3 2 + 1 8 2 + 1 9 2
so that the correct answer is
f a c ⋅ 8 5 4 = 2 . 0 5 8 0 3 ⋅ 1 0 − 3 4
There are 1 1 sets with distinct non-zero quantum numbers, which means a degeneracy of 1 1 ⋅ 3 ! = 6 6 . For 8 6 6 , on the other hand, while it does have 1 2 sets as shown above, one of them has 0 , which is normally not considered a quantum number in the case of a particle in a box (it would mean the wave function would vanish everywhere, i.e. there's no particle), and another has 1 9 repeated, which means a degeneracy of 1 0 ⋅ 3 ! + 3 = 6 3 .
Log in to reply
I believe you're right... Changing my code from
1 |
|
to
1 |
|
results in the output
1 2 3 |
|
and the same set of quantum numbers as you list.
That goes to show that the claim "no knowledge of QM is needed to solve this problem" is not quite warranted... (Of course, that does not get me off the hook because I studied both Physics and Computer Science.) Thanks for the correction!
Log in to reply
I'm going to fix that right now and qualify the question.
854 was actually the answer I put in. Brilliant seems to round of 866 as a correct answer. I shall mention that the quantum numbers have to be positive in the problem.
@Michael Mendrin I was wondering how realistic this problem is. I mean, I know the box itself is not very realistic to begin with because of the infinite potentials but are we allowed to go up to any E we want? I know that if we had non-infinite potentials, we would see some scattering but since Ψ = 0 outside the box , is it feasible to talk about any E no matter how large?
Log in to reply
Mathematically speaking, there is no reason why E cannot be as high as we want, just like it didn't hurt "the math of QM" by assuming infinite potentials outside the box, however unrealistic it is. By assuming the unrealistic, we can approximate classical behavior, which is another way of saying that the mathematics of classical physics is but an approximation of reality.
Problem Loading...
Note Loading...
Set Loading...
In Java:
Output:
Explanation: the variable "fac" stands for 2 m L 2 π 2 ℏ 2 = 2 . 4 0 9 8 7 × 1 0 − 3 7 . To avoid working with very small/large numbers, I multiplied the values of ℏ , m , the energy E and "fac" by 1 0 − 3 4 . That way I didn't need any scientific notation.
The loops run through all possible values of n x ≤ n y ≤ n z so that n x 2 + n y 2 + n z 2 did not exceed the limit. The degeneracy of each energy is 6 if all three n values are different, 1 if they are all the same, and 3 otherwise.
Note that this problem is interesting because it essentially counts in how many ways an integer can be expressed as the sum of three squares. The winner here is
8 6 6 = 0 2 + 5 2 + 2 9 2 = 1 2 + 9 2 + 2 8 2 = 1 2 + 1 7 2 + 2 4 2 = 3 2 + 4 2 + 2 9 2 = 4 2 + 1 1 2 + 2 7 2 = 4 2 + 1 5 2 + 2 5 2 = 5 2 + 2 0 2 + 2 1 2 = 8 2 + 1 9 2 + 2 1 2 = 9 2 + 1 6 2 + 2 3 2 = 1 1 2 + 1 3 2 + 2 4 2 = 1 2 2 + 1 9 2 + 1 9 2 = 1 3 2 + 1 6 2 + 2 1 2 .