Spaces:
Sleeping
Sleeping
Create pages/40_PHY_614_Quantum_Mechanics_I.py
Browse files
pages/40_PHY_614_Quantum_Mechanics_I.py
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Set the page title
|
4 |
+
st.title("PHY 614: Quantum Mechanics I")
|
5 |
+
|
6 |
+
# Course Details
|
7 |
+
st.markdown("""
|
8 |
+
## Course Details
|
9 |
+
- **Course Title**: Quantum Mechanics I
|
10 |
+
- **Credits**: 3
|
11 |
+
- **Prerequisites**: PHY 520
|
12 |
+
- **Instructor**: [Instructor Name]
|
13 |
+
- **Office Hours**: [Office Hours]
|
14 |
+
|
15 |
+
## Course Description
|
16 |
+
An introduction to the fundamental principles and formalism of quantum mechanics, covering wave mechanics, the Schrödinger equation, angular momentum, and approximation methods. Applications to atomic and molecular systems will be discussed.
|
17 |
+
|
18 |
+
## Course Objectives
|
19 |
+
Upon completing this course, students will:
|
20 |
+
- Understand the formalism of quantum mechanics.
|
21 |
+
- Solve the Schrödinger equation for various potentials.
|
22 |
+
- Apply quantum mechanics to model atomic and molecular systems.
|
23 |
+
|
24 |
+
---
|
25 |
+
""")
|
26 |
+
|
27 |
+
# Weekly Outline with Problems
|
28 |
+
|
29 |
+
# Week 1-2: Introduction to Quantum Mechanics and the Schrödinger Equation
|
30 |
+
with st.expander("**Week 1-2: Introduction to Quantum Mechanics and the Schrödinger Equation**"):
|
31 |
+
st.markdown("""
|
32 |
+
### Topics Covered
|
33 |
+
- Historical Background: The failure of classical mechanics and the rise of quantum theory.
|
34 |
+
- Wave-Particle Duality: The de Broglie hypothesis, wavefunctions, and the probabilistic interpretation of quantum mechanics.
|
35 |
+
- The Schrödinger Equation: Time-dependent and time-independent forms.
|
36 |
+
- Probability Density and Current: Interpretation of the wavefunction, normalization, and probability conservation.
|
37 |
+
|
38 |
+
### Problems
|
39 |
+
1. Solve the time-independent Schrödinger equation for a free particle in one dimension and interpret the solution.
|
40 |
+
2. Solve the Schrödinger equation for a particle in an infinite potential well (1D box) and find the energy eigenvalues and eigenfunctions.
|
41 |
+
3. Normalize the wavefunction of a particle in a 1D box.
|
42 |
+
4. Solve the time-dependent Schrödinger equation for a free particle wave packet.
|
43 |
+
5. Calculate the probability density and current for a particle in a 1D potential.
|
44 |
+
6. Solve the Schrödinger equation for a step potential and discuss the reflection and transmission coefficients.
|
45 |
+
7. Analyze the behavior of a particle in a finite square well potential and determine the bound states.
|
46 |
+
8. Apply boundary conditions to a particle in a symmetric potential and solve for the energy eigenstates.
|
47 |
+
9. Calculate the time evolution of a Gaussian wave packet for a free particle.
|
48 |
+
10. Compute the expectation values of position and momentum for a particle in a 1D box.
|
49 |
+
""")
|
50 |
+
|
51 |
+
# Week 3-4: Operators, Eigenvalues, and Measurement Theory
|
52 |
+
with st.expander("**Week 3-4: Operators, Eigenvalues, and Measurement Theory**"):
|
53 |
+
st.markdown("""
|
54 |
+
### Topics Covered
|
55 |
+
- Linear Operators in Quantum Mechanics: Observables as Hermitian operators.
|
56 |
+
- Commutators: Understanding the commutator relation and its implications for uncertainty.
|
57 |
+
- Eigenvalues and Eigenstates: Solving for eigenvalues and eigenfunctions of quantum operators.
|
58 |
+
- Measurement Theory: The measurement postulate, expectation values, and the collapse of the wavefunction.
|
59 |
+
|
60 |
+
### Problems
|
61 |
+
11. Calculate the commutator [x, p] for position and momentum operators and verify the canonical commutation relation.
|
62 |
+
12. Solve for the eigenvalues and eigenfunctions of the momentum operator in one dimension.
|
63 |
+
13. Find the expectation value and uncertainty in position for a particle in a given wavefunction.
|
64 |
+
14. Calculate the eigenvalues and eigenfunctions of the Hamiltonian for a particle in a 1D potential well.
|
65 |
+
15. Verify the uncertainty principle for a Gaussian wave packet and calculate the minimum uncertainty.
|
66 |
+
16. Apply the measurement postulate to find the probability distribution of a particle's position in a given state.
|
67 |
+
17. Solve for the expectation value of the momentum operator for a particle in a harmonic potential.
|
68 |
+
18. Analyze the effect of a measurement on a particle’s wavefunction using the projection postulate.
|
69 |
+
19. Calculate the probability of measuring specific eigenvalues for a particle in a superposition of energy eigenstates.
|
70 |
+
20. Solve for the time evolution of an observable using Heisenberg's equation of motion.
|
71 |
+
""")
|
72 |
+
|
73 |
+
# Week 5-6: The Harmonic Oscillator
|
74 |
+
with st.expander("**Week 5-6: The Harmonic Oscillator**"):
|
75 |
+
st.markdown("""
|
76 |
+
### Topics Covered
|
77 |
+
- Schrödinger Equation for the Harmonic Oscillator: Exact solutions using power series and ladder operator methods.
|
78 |
+
- Creation and Annihilation Operators: Algebraic solution of the harmonic oscillator using ladder operators.
|
79 |
+
- Energy Quantization: Discrete energy levels and zero-point energy.
|
80 |
+
- Coherent States: Introduction to coherent states as superpositions of energy eigenstates.
|
81 |
+
|
82 |
+
### Problems
|
83 |
+
21. Solve the time-independent Schrödinger equation for the quantum harmonic oscillator using the differential equation method.
|
84 |
+
22. Apply the ladder operator (creation and annihilation operators) method to find the energy eigenvalues of the harmonic oscillator.
|
85 |
+
23. Calculate the ground-state wavefunction of the harmonic oscillator using the ladder operator approach.
|
86 |
+
24. Find the first excited state wavefunction of the harmonic oscillator and verify the energy eigenvalue.
|
87 |
+
25. Compute the expectation values of position and momentum for the ground and first excited states of the harmonic oscillator.
|
88 |
+
26. Derive the commutation relation between the creation and annihilation operators for the harmonic oscillator.
|
89 |
+
27. Calculate the zero-point energy of the harmonic oscillator.
|
90 |
+
28. Solve for the time evolution of a coherent state in the harmonic oscillator potential.
|
91 |
+
29. Analyze the behavior of a quantum system in a quadratic potential using the energy eigenstates of the harmonic oscillator.
|
92 |
+
30. Solve for the uncertainty in position and momentum for the ground state of the harmonic oscillator.
|
93 |
+
""")
|
94 |
+
|
95 |
+
# Week 7: Angular Momentum and Spin
|
96 |
+
with st.expander("**Week 7: Angular Momentum and Spin**"):
|
97 |
+
st.markdown("""
|
98 |
+
### Topics Covered
|
99 |
+
- Angular Momentum in Quantum Mechanics: Orbital angular momentum operators and their commutation relations.
|
100 |
+
- Eigenvalues of \(L^2\) and \(L_z\): Deriving the quantized nature of angular momentum.
|
101 |
+
- Spin Angular Momentum: Introduction to spin as an intrinsic form of angular momentum.
|
102 |
+
- Addition of Angular Momenta: Coupling of spin and orbital angular momentum.
|
103 |
+
|
104 |
+
### Problems
|
105 |
+
31. Solve for the eigenvalues and eigenfunctions of \(L^2\) and \(L_z\) for a particle in a central potential.
|
106 |
+
32. Calculate the commutation relations between the components of the angular momentum operators.
|
107 |
+
33. Find the eigenfunctions of the orbital angular momentum operator \(L_z\) for a particle on a sphere.
|
108 |
+
34. Apply the ladder operator method to derive the quantized values of angular momentum for a particle in a spherical potential.
|
109 |
+
35. Solve for the spin eigenvalues and eigenstates using the Pauli matrices.
|
110 |
+
36. Calculate the total angular momentum for a system with coupled spin and orbital angular momentum.
|
111 |
+
37. Analyze the behavior of a spin-1/2 particle in a magnetic field (e.g., Stern-Gerlach experiment).
|
112 |
+
38. Solve for the probability of measuring a specific spin component for a particle in a superposition of spin states.
|
113 |
+
""")
|
114 |
+
|
115 |
+
# Week 8-9: The Hydrogen Atom
|
116 |
+
with st.expander("**Week 8-9: The Hydrogen Atom**"):
|
117 |
+
st.markdown("""
|
118 |
+
### Topics Covered
|
119 |
+
- Schrödinger Equation in Spherical Coordinates: Solving the hydrogen atom problem.
|
120 |
+
- Radial and Angular Parts of the Wavefunction: Separation of variables in spherical coordinates.
|
121 |
+
- Energy Levels and Quantum Numbers: The quantization of energy and angular momentum in the hydrogen atom.
|
122 |
+
- Degeneracy and Selection Rules: Degeneracy in energy levels and the rules governing transitions.
|
123 |
+
|
124 |
+
### Problems
|
125 |
+
39. Solve the time-independent Schrödinger equation for the hydrogen atom in spherical coordinates.
|
126 |
+
40. Derive the radial and angular parts of the hydrogen atom wavefunction using separation of variables.
|
127 |
+
41. Calculate the energy levels of the hydrogen atom and interpret the quantum numbers \(n\), \(l\), and \(m\).
|
128 |
+
42. Find the ground-state wavefunction of the hydrogen atom and normalize it.
|
129 |
+
43. Solve for the radial probability distribution for the hydrogen atom in the \(n=1\) and \(n=2\) states.
|
130 |
+
44. Calculate the expectation value of the radial distance for an electron in the ground state of the hydrogen atom.
|
131 |
+
45. Derive the selection rules for allowed transitions between energy levels in the hydrogen atom.
|
132 |
+
46. Compute the degeneracy of the energy levels of the hydrogen atom and explain its physical significance.
|
133 |
+
47. Solve for the angular part of the hydrogen atom wavefunction and compute the spherical harmonics.
|
134 |
+
48. Analyze the splitting of energy levels in the hydrogen atom due to an external magnetic field (Zeeman effect).
|
135 |
+
""")
|
136 |
+
|
137 |
+
# Week 10-11: Approximation Methods: Time-Independent Perturbation Theory
|
138 |
+
with st.expander("**Week 10-11: Approximation Methods: Time-Independent Perturbation Theory**"):
|
139 |
+
st.markdown("""
|
140 |
+
### Topics Covered
|
141 |
+
- Time-Independent Perturbation Theory: Introduction to perturbation theory for non-degenerate and degenerate cases.
|
142 |
+
- First-Order and Second
|
143 |
+
|
144 |
+
### Problems (continued)
|
145 |
+
49. Apply first-order perturbation theory to calculate the energy shift in a hydrogen atom placed in an external electric field (Stark effect).
|
146 |
+
50. Solve for the first-order correction to the wavefunction of a perturbed harmonic oscillator.
|
147 |
+
51. Calculate the second-order energy correction for a quantum system with a known perturbation.
|
148 |
+
52. Apply perturbation theory to a degenerate system and resolve the degeneracy using the perturbation.
|
149 |
+
53. Analyze the effect of a weak magnetic field on the energy levels of a spin-1/2 particle using perturbation theory.
|
150 |
+
54. Solve for the energy corrections to a particle in a finite potential well subjected to a small external potential.
|
151 |
+
55. Compute the energy shifts in the hydrogen atom due to the relativistic correction using perturbation theory.
|
152 |
+
56. Derive the first-order correction to the energy of the ground state of the helium atom.
|
153 |
+
57. Solve for the energy correction due to the fine structure of the hydrogen atom using first-order perturbation theory.
|
154 |
+
58. Apply time-independent perturbation theory to calculate the energy shift of a quantum system in a periodic potential.
|
155 |
+
""")
|
156 |
+
|
157 |
+
# Week 12-13: Variational Principle and WKB Approximation
|
158 |
+
with st.expander("**Week 12-13: Variational Principle and WKB Approximation**"):
|
159 |
+
st.markdown("""
|
160 |
+
### Topics Covered
|
161 |
+
- Variational Method: Introduction to the variational principle as an approximation method for ground state energies.
|
162 |
+
- Trial Wavefunctions: Choosing appropriate trial wavefunctions to minimize the energy functional.
|
163 |
+
- WKB Approximation: Semi-classical approximation to solve the Schrödinger equation for slowly varying potentials.
|
164 |
+
|
165 |
+
### Problems
|
166 |
+
59. Apply the variational method to estimate the ground-state energy of the helium atom.
|
167 |
+
60. Use a trial wavefunction to minimize the energy of a particle in a 1D potential well using the variational principle.
|
168 |
+
61. Solve for the energy of a quantum system using a Gaussian trial wavefunction and the variational principle.
|
169 |
+
62. Calculate the ground-state energy of the hydrogen atom using the variational method with an appropriate trial wavefunction.
|
170 |
+
63. Apply the WKB approximation to solve for the bound states of a particle in a 1D potential well.
|
171 |
+
64. Derive the WKB wavefunction for a particle tunneling through a potential barrier and calculate the tunneling probability.
|
172 |
+
65. Solve for the energy levels of a slowly varying potential using the WKB approximation.
|
173 |
+
66. Apply the WKB approximation to estimate the energy spectrum of a quantum system with a known potential.
|
174 |
+
""")
|
175 |
+
|
176 |
+
# Week 14: Introduction to Identical Particles and Symmetry
|
177 |
+
with st.expander("**Week 14: Introduction to Identical Particles and Symmetry**"):
|
178 |
+
st.markdown("""
|
179 |
+
### Topics Covered
|
180 |
+
- Symmetrization and Antisymmetrization: Wavefunctions for identical bosons and fermions.
|
181 |
+
- Pauli Exclusion Principle: The role of symmetry in multi-electron systems.
|
182 |
+
- Exchange Interaction: Consequences of particle indistinguishability in atomic and molecular systems.
|
183 |
+
|
184 |
+
### Problems
|
185 |
+
67. Symmetrize and antisymmetrize the wavefunction for a system of two identical bosons and two identical fermions.
|
186 |
+
68. Apply the Pauli exclusion principle to solve for the ground-state configuration of a two-electron atom (helium).
|
187 |
+
69. Solve for the wavefunction of a system of three identical fermions in a 1D potential well.
|
188 |
+
70. Analyze the exchange interaction between two identical particles in a harmonic potential.
|
189 |
+
71. Derive the energy levels of a multi-electron atom using the principles of symmetry and particle exchange.
|
190 |
+
72. Calculate the total spin state for a system of two spin-1/2 particles in a singlet or triplet configuration.
|
191 |
+
73. Apply the concept of exchange degeneracy to solve for the energy spectrum of a system of identical bosons.
|
192 |
+
74. Solve for the symmetry properties of a multi-particle wavefunction in an external potential.
|
193 |
+
""")
|
194 |
+
|
195 |
+
# Week 15: Review and Final Exam Preparation
|
196 |
+
with st.expander("**Week 15: Review and Final Exam Preparation**"):
|
197 |
+
st.markdown("""
|
198 |
+
### Topics Covered
|
199 |
+
- Comprehensive Review: Review of quantum mechanics topics covered throughout the semester.
|
200 |
+
- Problem-Solving Sessions: In-class discussions of complex problems and solutions.
|
201 |
+
- Final Exam Preparation: Focus on key topics and techniques for solving exam-level problems.
|
202 |
+
|
203 |
+
### Problems
|
204 |
+
75. Solve for the energy levels of the hydrogen atom using both analytical and perturbation methods.
|
205 |
+
76. Analyze the quantum harmonic oscillator using ladder operators and calculate the energy corrections due to a small perturbation.
|
206 |
+
77. Compute the eigenvalues and eigenfunctions for a particle in a central potential using angular momentum operators.
|
207 |
+
78. Apply the variational principle to estimate the ground-state energy of a complex quantum system.
|
208 |
+
79. Solve for the time evolution of a quantum system using both Schrödinger and Heisenberg pictures.
|
209 |
+
80. Analyze the behavior of identical particles in a 1D potential well and solve for the energy spectrum.
|
210 |
+
""")
|
211 |
+
|
212 |
+
# Textbooks Section
|
213 |
+
st.markdown("""
|
214 |
+
## Textbooks
|
215 |
+
- **"Principles of Quantum Mechanics"** by R. Shankar
|
216 |
+
- **"Modern Quantum Mechanics"** by J. J. Sakurai and Jim Napolitano
|
217 |
+
""")
|