The Schrödinger equation is the foundational equation of quantum mechanics. Published by Erwin Schrödinger in 1926, it describes how the quantum state of a physical system changes over time.

The Time-Dependent Schrödinger Equation

The general form of the time-dependent Schrödinger equation is:

$$i\hbar \frac{\partial}{\partial t} |\Psi(t)\rangle = \hat{H} |\Psi(t)\rangle$$

Here, $|\Psi(t)\rangle$ is the state vector of the system, $\hat{H}$ is the Hamiltonian operator (representing total energy), $\hbar$ is the reduced Planck constant, and $i$ is the imaginary unit.

In the position basis, for a single non-relativistic particle, this becomes:

$$i\hbar \frac{\partial}{\partial t} \Psi(\mathbf{r}, t) = \left[ -\frac{\hbar^2}{2m} \nabla^2 + V(\mathbf{r}, t) \right] \Psi(\mathbf{r}, t)$$

The term $-\frac{\hbar^2}{2m} \nabla^2$ represents kinetic energy, while $V(\mathbf{r}, t)$ is the potential energy function.

The Time-Independent Equation

When the Hamiltonian doesn’t depend on time, we can separate variables to obtain the time-independent Schrödinger equation:

$$\hat{H} |\psi\rangle = E |\psi\rangle$$

This is an eigenvalue equation. The solutions $|\psi\rangle$ are the energy eigenstates, and $E$ are the allowed energy levels of the system. This is where quantization enters physics — not all energies are permitted.

The Particle in a Box

The simplest exactly solvable quantum system is a particle confined to a one-dimensional box of length $L$ with infinite potential walls. The energy eigenvalues are:

$$E_n = \frac{n^2 \pi^2 \hbar^2}{2mL^2}, \quad n = 1, 2, 3, \ldots$$

And the normalized wavefunctions are:

$$\psi_n(x) = \sqrt{\frac{2}{L}} \sin\left(\frac{n\pi x}{L}\right)$$

Simulating with Python

We can visualize these wavefunctions using Python:

import numpy as np
import matplotlib.pyplot as plt

L = 1.0  # Box length in nm
x = np.linspace(0, L, 500)

fig, ax = plt.subplots(figsize=(10, 6))
for n in range(1, 5):
    psi = np.sqrt(2/L) * np.sin(n * np.pi * x / L)
    ax.plot(x, psi + n*2, label=f'n={n}')

ax.set_xlabel('Position (nm)')
ax.set_ylabel('ψ(x) + offset')
ax.set_title('Particle in a Box Wavefunctions')
ax.legend()
plt.tight_layout()
plt.show()

Physical Interpretation

The Born rule tells us that the probability density of finding the particle at position $\mathbf{r}$ is:

$$\rho(\mathbf{r}, t) = |\Psi(\mathbf{r}, t)|^2$$

This probabilistic interpretation was revolutionary — nature, at its most fundamental level, is described by probability amplitudes rather than deterministic trajectories. The wavefunction $\Psi$ is not directly observable; only $|\Psi|^2$ connects to experimental measurements.

Why It Matters

The Schrödinger equation is not just a historical curiosity. It remains the primary tool for:

  • Designing quantum computing algorithms
  • Understanding chemical bonds and molecular dynamics
  • Predicting semiconductor behavior
  • Developing new quantum materials

Every quantum technology, from quantum computers to quantum sensors, traces back to this remarkable equation.