Chem 3240 · Lecture 2.1
Two key families: traveling waves (propagate) and standing waves (oscillate in place)


A right-moving wave of fixed shape:
\[u(x,t) = f(x-vt)\]
Set the front constant: \(x - vt = const \Rightarrow x = vt + const\) (moves right). The form \(f(x+vt)\) moves left.

A sine wave traveling along \(x\):
\[y(x,t)= A \sin(kx-\omega t+\phi)\]
\[u(x,t) = Ae^{i(kx-\omega t)}\]

\[k=\frac{2\pi}{\lambda}\]
\[\omega=\frac{2\pi}{T} = 2\pi\nu\]
Wavelength, frequency, and speed are linked by \(\omega = kv\), i.e. \(\lambda \nu = v\)
\[u(x,t) = Ae^{i(kx-\omega t)}\]
\[u(x,t) = Ae^{i(kx-\omega t)}\]
\[u(x,t) = Ae^{i(kx-\omega t)}\]
\[\frac{\partial^2 u(x,t)}{\partial x^2 } = \frac{1}{v^2}\frac{\partial^2 u(x,t)}{\partial t^2}\]
Solutions are wave functions of space and time


Summing two waves differing only in phase:
\[\Psi_{\text{total}} = 2 \cos\left( \frac{\phi_1 - \phi_2}{2} \right) e^{i \left( kx - \omega t + \frac{\phi_1 + \phi_2}{2} \right)}\]
wave 1 \(= \sin(kx)\), wave 2 \(= \sin(kx+\phi)\), sum with envelope \(2\cos(\phi/2)\)
{
const xs = d3.range(0, 12.57, 0.03);
const series = (fn) => xs.map(x => ({x, y: fn(x)}));
return Plot.plot({
width: 1000, height: 360,
x: {label: "kx"},
y: {domain: [-2.2, 2.2], label: "u"},
marks: [
Plot.ruleY([0], {stroke: "#ccc"}),
Plot.line(series(x => Math.sin(x)), {x: "x", y: "y", stroke: "#7fb3d5", strokeWidth: 1.5}),
Plot.line(series(x => Math.sin(x + phi)), {x: "x", y: "y", stroke: "#e59866", strokeWidth: 1.5}),
Plot.line(series(x => Math.sin(x) + Math.sin(x + phi)), {x: "x", y: "y", stroke: "#C8102E", strokeWidth: 2.5})
]
});
}A wave is a disturbance described by \(u=f(x \pm vt)\) that obeys the classical wave equation \(u_{xx} = \frac{1}{v^2}u_{tt}\), with \(k=2\pi/\lambda\), \(\omega=2\pi\nu\), and \(\omega=kv\); superposing waves produces interference.
Chem 3240 · Quantum Mechanics