Finding the 10 lowest energy levels

AI Thread Summary
The discussion focuses on finding the ten lowest energy levels using quantum numbers. A participant expresses confusion about the correct energy levels and seeks advice on coding a solution. Suggestions include writing a Python script to calculate and order energy levels based on quantum numbers. The importance of attempting the code independently is emphasized, with encouragement to share the results for critique. Ultimately, one participant successfully computes the lowest energy levels using Microsoft Excel while planning to code as well.
Mason Smith
Messages
21
Reaction score
2

Homework Statement


upload_2019-1-23_20-1-3.png


Homework Equations


upload_2019-1-23_20-1-30.png


The Attempt at a Solution


upload_2019-1-23_20-1-58.png

I understand the equation, and I understand the concept. My question is this: What is the best way to go about solving this problem? My line of reasoning concludes that the fourth lowest energy level is E211. However, the fourth lowest energy level is E113. Is there a code that I could write that would show the result of trying every integer for the three quantum numbers?
 

Attachments

  • upload_2019-1-23_20-1-3.png
    upload_2019-1-23_20-1-3.png
    10.1 KB · Views: 590
  • upload_2019-1-23_20-1-30.png
    upload_2019-1-23_20-1-30.png
    1.9 KB · Views: 597
  • upload_2019-1-23_20-1-58.png
    upload_2019-1-23_20-1-58.png
    10.5 KB · Views: 758
Physics news on Phys.org
You could certainly write a code to do this. You could just calculate the energy for, say n1, n2, n3 <10, then order them from lowest to highest. Do you have any coding experience? If not, this would be a good learning project. I would recommend Python for doing this. This site has a good online tutorial for learning Python.
 
  • Like
Likes Mason Smith
phyzguy said:
You could certainly write a code to do this. You could just calculate the energy for, say n1, n2, n3 <10, then order them from lowest to highest. Do you have any coding experience? If not, this would be a good learning project. I would recommend Python for doing this. This site has a good online tutorial for learning Python.
I have some coding experience with Python. I will be sure to look at the site that you mentioned. Thank you for the suggestion! How would you recommend starting the code?
 
Mason Smith said:
I have some coding experience with Python. I will be sure to look at the site that you mentioned. Thank you for the suggestion! How would you recommend starting the code?

This is pretty simple code. Rather than me writing it for you, I suggest you make an attempt, post it here (use the code tags - see the + sign above and the example below) and we will critique it for you.

Python:
print("Hello world")
 
  • Like
Likes berkeman and Mason Smith
phyzguy said:
This is pretty simple code. Rather than me writing it for you, I suggest you make an attempt, post it here (use the code tags - see the + sign above and the example below) and we will critique it for you.

Python:
print("Hello world")
Alright. That sounds fair. I think that I will attempt the code this weekend, but in the meantime, I made a list of numbers in Microsoft Excel, then computed the 10 lowest energy levels (i.e., the 10 least multiples of E0). It provided the correct answer.
 
TL;DR Summary: I came across this question from a Sri Lankan A-level textbook. Question - An ice cube with a length of 10 cm is immersed in water at 0 °C. An observer observes the ice cube from the water, and it seems to be 7.75 cm long. If the refractive index of water is 4/3, find the height of the ice cube immersed in the water. I could not understand how the apparent height of the ice cube in the water depends on the height of the ice cube immersed in the water. Does anyone have an...
Thread 'Variable mass system : water sprayed into a moving container'
Starting with the mass considerations #m(t)# is mass of water #M_{c}# mass of container and #M(t)# mass of total system $$M(t) = M_{C} + m(t)$$ $$\Rightarrow \frac{dM(t)}{dt} = \frac{dm(t)}{dt}$$ $$P_i = Mv + u \, dm$$ $$P_f = (M + dm)(v + dv)$$ $$\Delta P = M \, dv + (v - u) \, dm$$ $$F = \frac{dP}{dt} = M \frac{dv}{dt} + (v - u) \frac{dm}{dt}$$ $$F = u \frac{dm}{dt} = \rho A u^2$$ from conservation of momentum , the cannon recoils with the same force which it applies. $$\quad \frac{dm}{dt}...
Back
Top