Finding the 10 lowest energy levels

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
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: 638
  • upload_2019-1-23_20-1-30.png
    upload_2019-1-23_20-1-30.png
    1.9 KB · Views: 664
  • upload_2019-1-23_20-1-58.png
    upload_2019-1-23_20-1-58.png
    10.5 KB · Views: 811
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   Reactions: 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   Reactions: 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.