Skip to content

Commit 7a58e9e

Browse files
committed
Created using Colab
1 parent 7b1dcb2 commit 7a58e9e

File tree

1 file changed

+165
-0
lines changed

1 file changed

+165
-0
lines changed
Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
{
2+
"nbformat": 4,
3+
"nbformat_minor": 0,
4+
"metadata": {
5+
"colab": {
6+
"provenance": [],
7+
"name": "How_to_Postulate_an_Equation_Schrodinger_Example.ipynb",
8+
"authorship_tag": "ABX9TyMniwjjLsf5tTsv9duLOfgm",
9+
"include_colab_link": true
10+
},
11+
"kernelspec": {
12+
"name": "python3",
13+
"display_name": "Python 3"
14+
},
15+
"language_info": {
16+
"name": "python"
17+
}
18+
},
19+
"cells": [
20+
{
21+
"cell_type": "markdown",
22+
"metadata": {
23+
"id": "view-in-github",
24+
"colab_type": "text"
25+
},
26+
"source": [
27+
"<a href=\"https://colab.research.google.com/github/OJB-Quantum/Math-and-Physics-How-To/blob/main/How_to_Postulate_an_Equation_Schrodinger_Example.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
28+
]
29+
},
30+
{
31+
"cell_type": "markdown",
32+
"source": [
33+
"Below is a postulation of the Schrodinger equation."
34+
],
35+
"metadata": {
36+
"id": "-fdgQJfYcwwo"
37+
}
38+
},
39+
{
40+
"cell_type": "markdown",
41+
"source": [
42+
"To postulate the Schrödinger equation step by step, we can use the insights from classical physics, wave mechanics, and the heat equation analogy. Below is a structured approach:\n",
43+
"\n",
44+
"---\n",
45+
"\n",
46+
"### **Step 1: Start with Classical Energy Concepts**\n",
47+
"In classical mechanics, the total energy $E$ of a free particle (no external forces) is given by the Hamiltonian:\n",
48+
"\n",
49+
"$\n",
50+
"E = \\frac{p^2}{2m}\n",
51+
"$\n",
52+
"\n",
53+
"where:\n",
54+
"- $ p $ is the momentum,\n",
55+
"- $ m $ is the mass of the particle.\n",
56+
"\n",
57+
"This equation will serve as the foundation for our quantum mechanical formulation.\n",
58+
"\n",
59+
"---\n",
60+
"\n",
61+
"### **Step 2: Introduce De Broglie’s Hypothesis**\n",
62+
"Louis de Broglie proposed that matter behaves like waves, with:\n",
63+
"\n",
64+
"$\n",
65+
"p = \\hbar k\n",
66+
"$\n",
67+
"\n",
68+
"$\n",
69+
"E = \\hbar \\omega\n",
70+
"$\n",
71+
"\n",
72+
"where:\n",
73+
"- $ k $ is the wave number ($ k = 2\\pi/\\lambda $),\n",
74+
"- $ \\omega $ is the angular frequency ($ \\omega = 2\\pi f $),\n",
75+
"- $ \\hbar $ is Planck’s reduced constant.\n",
76+
"\n",
77+
"These relations suggest that energy and momentum can be represented using wave functions.\n",
78+
"\n",
79+
"---\n",
80+
"\n",
81+
"### **Step 3: Define Quantum Operators**\n",
82+
"In quantum mechanics, we replace classical quantities with operators:\n",
83+
"\n",
84+
"- **Momentum operator**: $ p = -i\\hbar \\frac{\\partial}{\\partial x} $\n",
85+
"- **Energy operator**: $ E = i\\hbar \\frac{\\partial}{\\partial t} $\n",
86+
"\n",
87+
"These operators act on the wave function $ \\psi(x,t) $.\n",
88+
"\n",
89+
"---\n",
90+
"\n",
91+
"### **Step 4: Apply Operators to the Classical Energy Equation**\n",
92+
"Using the classical energy equation:\n",
93+
"\n",
94+
"$\n",
95+
"E = \\frac{p^2}{2m}\n",
96+
"$\n",
97+
"\n",
98+
"and replacing $ E $ and $ p $ with their quantum operators:\n",
99+
"\n",
100+
"$\n",
101+
"i\\hbar \\frac{\\partial}{\\partial t} \\psi = \\frac{(-i\\hbar \\frac{\\partial}{\\partial x})^2}{2m} \\psi\n",
102+
"$\n",
103+
"\n",
104+
"Simplifying:\n",
105+
"\n",
106+
"$\n",
107+
"i\\hbar \\frac{\\partial}{\\partial t} \\psi = -\\frac{\\hbar^2}{2m} \\frac{\\partial^2}{\\partial x^2} \\psi\n",
108+
"$\n",
109+
"\n",
110+
"This is the **time-dependent Schrödinger equation** for a free particle.\n",
111+
"\n",
112+
"---\n",
113+
"\n",
114+
"### **Step 5: Generalize to Include Potentials**\n",
115+
"If a particle moves in a potential $ V(x,t) $, we modify the Hamiltonian:\n",
116+
"\n",
117+
"$\n",
118+
"E = \\frac{p^2}{2m} + V\n",
119+
"$\n",
120+
"\n",
121+
"Applying the same substitution:\n",
122+
"\n",
123+
"$\n",
124+
"i\\hbar \\frac{\\partial}{\\partial t} \\psi = \\left(-\\frac{\\hbar^2}{2m} \\frac{\\partial^2}{\\partial x^2} + V(x,t)\\right) \\psi\n",
125+
"$\n",
126+
"\n",
127+
"This is the general time-dependent **Schrödinger equation**:\n",
128+
"\n",
129+
"$\n",
130+
"i\\hbar \\frac{\\partial}{\\partial t} \\psi = \\hat{H} \\psi\n",
131+
"$\n",
132+
"\n",
133+
"where $ \\hat{H} $ (the Hamiltonian operator) is:\n",
134+
"\n",
135+
"$\n",
136+
"\\hat{H} = -\\frac{\\hbar^2}{2m} \\nabla^2 + V(x,t).\n",
137+
"$\n",
138+
"\n",
139+
"---\n",
140+
"\n",
141+
"### **Step 6: Connection to the Heat Equation**\n",
142+
"- The Schrödinger equation is structurally similar to the heat equation:\n",
143+
"\n",
144+
" $\n",
145+
" \\frac{\\partial u}{\\partial t} = D \\frac{\\partial^2 u}{\\partial x^2}\n",
146+
" $\n",
147+
"\n",
148+
"- However, the Schrödinger equation has an **imaginary** time derivative ($ i\\hbar \\partial/\\partial t $), leading to **wave-like behavior** instead of pure diffusion.\n",
149+
"- If we perform a Wick rotation ($ t \\to i\\tau $), the Schrödinger equation transforms into a heat-like equation. This analogy is useful in statistical mechanics and path integrals.\n",
150+
"\n",
151+
"---\n",
152+
"\n",
153+
"### **Final Thoughts**\n",
154+
"- The Schrödinger equation is postulated based on wave-particle duality and operator substitutions.\n",
155+
"- The similarity to the heat equation helps us understand its structure, but the imaginary unit $ i $ is what makes quantum mechanics fundamentally different.\n",
156+
"- The equation is not strictly \"derived\" but is **motivated** by classical mechanics and wave physics.\n",
157+
"\n",
158+
"By following these steps, you can systematically arrive at the Schrödinger equation and appreciate its physical significance."
159+
],
160+
"metadata": {
161+
"id": "jrVZFMiIceLE"
162+
}
163+
}
164+
]
165+
}

0 commit comments

Comments
 (0)