Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Atomic spectra

Spectroscopy of Atoms

Hydrogen atomic spectrum

Figure 1:Atomic spectroscopy of the hydrogen atom.
Hydrogen in a gas-discharge tube emits light at discrete wavelengths, which appear as distinct spectral lines when passed through a prism.

Every element produces its own set of lines. Below is what a spectrograph records from a discharge lamp of each gas: no two patterns are alike, which is why a spectrum taken through a telescope tells you what a star is made of.

Source
import numpy as np
import matplotlib.pyplot as plt

def wl_to_rgb(wl):
    """Approximate sRGB colour of a single wavelength in nm."""
    if wl < 440:    r, g, b = -(wl - 440) / 60, 0.0, 1.0
    elif wl < 490:  r, g, b = 0.0, (wl - 440) / 50, 1.0
    elif wl < 510:  r, g, b = 0.0, 1.0, -(wl - 510) / 20
    elif wl < 580:  r, g, b = (wl - 510) / 70, 1.0, 0.0
    elif wl < 645:  r, g, b = 1.0, -(wl - 645) / 65, 0.0
    else:           r, g, b = 1.0, 0.0, 0.0
    return (min(r, 1.0), min(g, 1.0), min(b, 1.0))

# (wavelength in nm, relative brightness) for the strong visible lines
spectra = {
    "H":  [(656.3, 1.0), (486.1, 0.6), (434.0, 0.4), (410.2, 0.3)],
    "He": [(447.1, 0.5), (471.3, 0.3), (492.2, 0.3), (501.6, 0.6),
           (587.6, 1.0), (667.8, 0.5), (706.5, 0.4)],
    "Na": [(498.3, 0.2), (568.8, 0.3), (589.0, 1.0), (589.6, 1.0), (615.4, 0.3)],
    "Hg": [(404.7, 0.6), (435.8, 1.0), (546.1, 1.0), (577.0, 0.6), (579.1, 0.6)],
    "Ne": [(585.2, 0.8), (588.2, 0.6), (594.5, 0.7), (607.4, 0.5), (614.3, 0.7),
           (621.7, 0.5), (626.6, 0.6), (633.4, 0.8), (640.2, 1.0), (650.7, 0.6),
           (659.9, 0.5), (692.9, 0.4), (703.2, 0.5)],
}

fig, axes = plt.subplots(len(spectra), 1, figsize=(9, 4.0), sharex=True)
for ax, (name, lines) in zip(axes, spectra.items()):
    ax.set_facecolor("black")
    for wl, intensity in lines:
        ax.axvline(wl, color=wl_to_rgb(wl), lw=1.8, alpha=0.35 + 0.65 * intensity)
    ax.set_yticks([])
    ax.set_ylabel(name, rotation=0, ha="right", va="center", fontsize=12, labelpad=14)
    for spine in ax.spines.values():
        spine.set_visible(False)
axes[-1].set_xlim(380, 750)
axes[-1].set_xlabel("wavelength (nm)")
fig.suptitle("Fig. Visible emission lines of five elements. Each element has its own fingerprint.",
             fontsize=10)
fig.tight_layout()
<Figure size 900x400 with 5 Axes>
Solar spectra

Figure 2:Spectroscopy of the Sun.
By analyzing spectral lines, one can identify the presence of different elements in the solar atmosphere.

Spectral lines and Rydberg’s formula

λ=Bn2n24,B=364.6 nm\lambda = B\,\frac{n^2}{n^2-4}, \qquad B = 364.6\ \text{nm}

where n=3,4,5,...n=3,4,5,.... Written in terms of the wavenumber ν~=1/λ\tilde{\nu} = 1/\lambda this is ν~=4B(1221n2)\tilde{\nu} = \frac{4}{B}\left(\frac{1}{2^2}-\frac{1}{n^2}\right) with 4/B=1.097×107 m14/B = 1.097\times10^{7}\ \text{m}^{-1}. Later, Johannes Rydberg generalized this formula to account for the entire hydrogen atom spectrum yielding the Rydberg formula

atomic series

Figure 3:Atomic spectral lines are named after their discoverers. Each series contains all transitions to a distinct lower level n=1,2,3n=1,2,3.

Bohr’s Model of the Hydrogen Atom

Evolution of atomic models

Figure 4:Evolution of atomic models.
From pre-quantum pictures of atoms to the modern quantum mechanical description.

Niels Bohr horseshoe anecdote

Figure 5:Anecdote about Niels Bohr.
A visitor once noticed a horseshoe (a Scandinavian good-luck charm) hanging above Bohr’s door:

“But Niels, you are a scientist! Surely you don’t believe in this superstition?”

“Of course I don’t,” Bohr replied. “But I am told it works even if you don’t believe in it!”

Quantizing the States of the Electron in the Hydrogen Atom

Quantized orbits of the electron

Figure 6:Bohr rationalized discrete orbits by requiring that an integer number of electron wavelengths fit around the circumference of each orbit: four waves close on themselves (a), four and a half do not (b).

2πr=nλe,n=1,2,3,2\pi r = n \lambda_e, \quad n = 1, 2, 3, \ldots
λe=hmev.\lambda_e = \frac{h}{m_e v}.
mevr=nh2π=n.m_e v r = \frac{n h}{2\pi} = n \hbar.

Force Balance

After introducing his quantization rule, Bohr turned back to classical mechanics to determine the allowed electron energies. He assumed that, in a stationary orbit, the electrostatic attraction between the proton and electron is exactly balanced by the centrifugal force of the orbiting electron.

Electrostatic force

fel=e24πε0r2,f_{\text{el}} = \frac{e^2}{4\pi\varepsilon_0 r^2},

where ee is the elementary charge and the factor 4πε04\pi \varepsilon_0 ensures SI units.

Centrifugal force

fcf=mev2r,f_{\text{cf}} = \frac{m_e v^2}{r},

where mem_e is the electron mass and vv its orbital velocity.

Equating these two forces gives

e24πε0r2=mev2r.\frac{e^2}{4\pi\varepsilon_0 r^2} = \frac{m_e v^2}{r}.

The force-balance equation together with the quantized angular momentum condition restricts the allowed radii rr of electron orbits. Solving step by step:

  1. From angular momentum quantization:

    mevr=nv=nmer.m_e v r = n\hbar \quad \Rightarrow \quad v = \frac{n\hbar}{m_e r}.
  2. Substituting into the force-balance equation:

    e24πε0r2=mer(nmer)2.\frac{e^2}{4\pi\varepsilon_0 r^2} = \frac{m_e}{r} \left( \frac{n\hbar}{m_e r} \right)^2.
  3. Simplifying:

    e24πε0=(n)2mer.\frac{e^2}{4\pi\varepsilon_0} = \frac{(n\hbar)^2}{m_e r}.
  4. Solving for rr:

    r=4πε0(n)2mee2=n2a0,n=1,2,3,r = \frac{4\pi \varepsilon_0 (n\hbar)^2}{m_e e^2} = n^2 a_0, \quad n = 1, 2, 3, \ldots

Energy of the Hydrogen Atom

The total energy of the electron-proton system is the sum of the electron’s kinetic energy and the Coulomb potential energy:

E(r)=12mev2e24πε0r.E(r) = \tfrac{1}{2} m_e v^2 - \frac{e^2}{4\pi\varepsilon_0 r}.

Using the force-balance relation

mev2=e24πε0r,m_e v^2 = \frac{e^2}{4\pi\varepsilon_0 r},

we substitute into the energy expression:

E(r)=12e24πε0re24πε0r=12e24πε0r.\begin{align} E(r) &= \tfrac{1}{2}\frac{e^2}{4\pi\varepsilon_0 r} - \frac{e^2}{4\pi\varepsilon_0 r} \\ &= -\tfrac{1}{2}\frac{e^2}{4\pi\varepsilon_0 r}. \end{align}

Next, inserting the quantized orbital radius

r=4πε0(n)2mee2,r = \frac{4\pi \varepsilon_0 (n\hbar)^2}{m_e e^2},

gives the Bohr energy levels:

En=mee48ε02h21n2,n=1,2,3,E_n = -\frac{m_e e^4}{8 \varepsilon_0^2 h^2} \cdot \frac{1}{n^2}, \quad n = 1, 2, 3, \ldots

Spectral lines and the Rydberg constant

The energy difference between two levels n1n_1 and n2n_2 is

ΔE=mee48ε02h2(1n121n22).\Delta E = \frac{m_e e^4}{8 \varepsilon_0^2 h^2} \left(\frac{1}{n_1^2} - \frac{1}{n_2^2}\right).

Relating this to photon energy E=hνE = h\nu and the wavenumber ν~=ν/c\tilde{\nu} = \nu/c gives

ν~=mee48ε02ch3(1n121n22)=RH(1n121n22),\tilde{\nu} = \frac{m_e e^4}{8 \varepsilon_0^2 c h^3} \left(\frac{1}{n_1^2} - \frac{1}{n_2^2}\right) = R_H \left(\frac{1}{n_1^2} - \frac{1}{n_2^2}\right),

where RHR_H is the Rydberg constant, which we now know expressed in fundamental constants rather than obtained as the result of an experimental fit!

RH=mee48ε02ch3R_H = \frac{m_e e^4}{8 \varepsilon_0^2 c h^3}
Hydrogen energy levels with Lyman, Balmer and Paschen transitions

Figure 7:Fig. Hydrogen energy levels and the three lowest spectral series. Every series shares one lower level, and the lines of a series crowd together as n2n_2 grows, converging on the series limit where the electron is set free.

Hydrogen-like atoms

En=13.6Z2n2,[eV]E_n = -13.6 \frac{Z^2}{n^2}, [eV]

Explore the hydrogen spectrum

Every spectral series is the set of transitions that end on one lower level. Slide n1n_1 to move from the Lyman series (ultraviolet) through Balmer (the visible lines of a hydrogen lamp) to Paschen and Brackett (infrared). Raise ZZ to see how a one-electron ion like He+He^+ pulls all levels down by Z2Z^2 and pushes every line to shorter wavelengths.

Where Bohr’s model breaks down

Bohr’s model reproduces the hydrogen spectrum to four digits, and that success is exactly why its failures matter. Within a decade it was clear that the model was a lucky halfway house rather than the final theory.

What survives is the physics, not the picture: energies are quantized, the quantum number is an integer, and light is emitted when the atom drops from one level to another. Chapter 5 replaces the orbit with a wavefunction and gets the levels right for the right reason, Chapter 6 supplies the missing selection rules, and Chapter 7 takes on helium.

Problems

Problem 1: Lyman alpha

The so-called Lyman series of lines in the emission spectrum of hydrogen corresponds to transitions from various excited states to the n = 1 orbit. Calculate the wavelength of the lowest-energy line in the Lyman series to three significant figures. In what region of the electromagnetic spectrum does it occur?

Problem 2: Photon from n = 4 to n = 1

Problem 3: First lines of the Lyman series

Use Rydberg’s formula to calculate the first few lines of the Lyman series (n1=1n_1=1).

Problem 4: Which level did the electron come from?

A line in the Lyman series of hydrogen has a wavelength of 1.03107m1.03 \cdot 10^{-7} m. Find the original level of the electron.

Problem 5: Ionization energy of He+

Using Bohr theory calculate the ionization energy of singly ionized helium He+He^{+}.

Problem 6: Bohr radii

Problem 7: The color of H-alpha

The brightest visible line of hydrogen, H-alpha, is the n=32n = 3 \to 2 transition of the Balmer series. Compute its wavelength and name its color. Do the same for n=42n = 4 \to 2 (H-beta). These two lines are what you see in a hydrogen discharge tube, and they give emission nebulae their red glow.

Problem 8: A coincidence between He+ and H

Show that the n=42n = 4 \to 2 transition of He+He^+ emits a photon of exactly the same energy as the n=21n = 2 \to 1 (Lyman alpha) transition of hydrogen. Find the general rule: which He+He^+ transitions coincide with hydrogen lines, and why?

Problem 9: How fast is the electron?

Using mevr=nm_e v r = n\hbar and r=n2a0r = n^2 a_0, find the speed of the electron in the ground state of hydrogen and express it as a fraction of the speed of light. This dimensionless ratio is the fine-structure constant α1/137\alpha \approx 1/137. What does it say about the need for relativity in hydrogen, and what happens to the innermost electron of uranium (Z=92Z = 92)?

Problem 10: The edge of a series

Every spectral series has a longest wavelength (its first line) and a shortest (the series limit, n2n_2 \to \infty). Compute both for the Paschen series (n1=3n_1 = 3). In which region of the electromagnetic spectrum do they fall, and can the Paschen lines ever overlap with the Balmer lines?