Molecular shape and electronic states — VSEPR, hybridization, term symbols
Molecular shape and electronic states — VSEPR, hybridization, term symbols
Predict a molecule’s shape from its valence-electron count alone, and use the same logic to pin a label onto an atom’s ground state.
Opening
Chapter 7 worked with Slater determinants and molecular orbitals (MOs) for many-electron molecules. This chapter comes down to a more tangible picture — why does a molecule take the shape it does? The reason HO bends, NH is umbrella-shaped, and CH is a perfect tetrahedron, once unpacked, is all a consequence of one sentence: electron pairs try to get as far apart as they can. After this chapter you can predict a molecule’s shape immediately from the number of bonded atoms and lone pairs around the central atom, see how that prediction meshes with the mathematical picture of hybrid orbitals, and explain in one line how the same reasoning, at the atomic level, organizes into the term symbol .
Main 1 — VSEPR: electron pairs choose the positions
The VSEPR (valence-shell electron-pair repulsion) model rests on a single premise. The electron pairs around a central atom — whether bonding pairs or lone pairs — repel one another, so they adopt the arrangement that maximizes their separation. The shape follows from that one line.
The quantity we count is the steric number (SN).
The standard geometry for each steric number is as follows.
- SN = 2 → linear, bond angle 180°. Examples: BeCl, CO.
- SN = 3 → trigonal planar, 120°. Example: BF.
- SN = 4 → tetrahedral, 109.5°. Example: CH. With one lone pair it collapses to trigonal pyramidal, giving NH (~107°). With two lone pairs it narrows further to bent, giving HO (~104.5°).
- SN = 5 → trigonal bipyramidal, 90° axial / 120° equatorial. Example: PCl.
- SN = 6 → octahedral, 90°. Example: SF.
There is a reason HO’s bond angle is 104.5°, tighter than the ideal tetrahedral 109.5°. A lone pair is not tied down to a proton, so it is more spatially diffuse and takes up more room than a bonding pair. The lone pairs therefore push the bonding pairs inward from the outside, squeezing the angle. NH’s 107° is a weaker version of the same effect. VSEPR gets this far quantitatively without invoking quantum mechanics at all.
Main 2 — Hybridization: how to re-shape atomic orbitals
If VSEPR tells you what shape you get, hybridization tells you how to recombine the central atom’s atomic orbitals (AOs) to match that shape.
Carbon’s ground-state configuration is , but when it forms four equivalent bonds as in CH, we mix one and three AOs into four equivalent hybrid orbitals. These four point to the corners of a tetrahedron. For a trigonal-planar case — BF, or the carbons of ethylene — we mix + + into three hybrids plus one leftover ; for a linear case — the carbons of acetylene — we mix only + into two hybrids plus two leftover . The rule is one line.
The leftover unhybridized orbitals meet the matching on a neighboring atom and form bonds (chapter 6). A double bond is + ; a triple bond is + .
One caution. Hybridization is not a measured fact but a post-hoc description. We take the experimental result that a molecule is tetrahedral and then choose an orbital basis to fit it. Even so, this description lets us organize bond angles, the presence of bonds, and planarity all at once.
Main 3 — Atomic term symbols
Organizing the same reasoning at the atomic level gives the term symbol . Call the total orbital angular momentum of an atom , the total spin (capital, summed over all electrons), and the total angular momentum . The notation reads as follows.
- The superscript — the multiplicity.
- The central letter — the value. S, P, D, F.
- The subscript — .
This label distinguishes the slightly different states that share one electron configuration. Which one is the ground state is decided by Hund’s rules.
- Maximize .
- For fixed , maximize .
- For a less-than-half-filled shell, minimize (for more than half full, the opposite).
Let us do nitrogen () directly. Three electrons go into the three slots ; Hund’s first rule aligns all three to the same spin, so . The sum of the magnetic quantum numbers is , so → the letter is S. runs from to , and for a less-than-half-filled shell we take the smallest value: . The result is
That is nitrogen’s ground-state label. Multiplicity 4 means there are microstates of the same energy.
Molecules carry symbols of the same kind. The ground state of H is ; the ground state of O is (which is why the oxygen molecule is paramagnetic). Here are the -analog for angular momentum along the molecular axis, labels inversion symmetry, and labels mirror symmetry. The deeper classification reappears in chapter 9 on spectroscopy.
In Python
# A VSEPR classifier: from bond count and lone-pair count alone,
# return the steric number and the shape. We also print the
# experimental bond angle alongside.
SHAPES = {
(2, 0): ("linear", 180.0),
(3, 0): ("trigonal planar", 120.0),
(4, 0): ("tetrahedral", 109.5),
(3, 1): ("trigonal pyramidal", 107.0),
(2, 2): ("bent", 104.5),
(5, 0): ("trigonal bipyramidal", 90.0),
(6, 0): ("octahedral", 90.0),
}
def vsepr(bonding, lone):
sn = bonding + lone
shape, angle = SHAPES[(bonding, lone)]
return sn, shape, angle
cases = [
("H2O", 2, 2),
("NH3", 3, 1),
("CH4", 4, 0),
("BeCl2", 2, 0),
("BF3", 3, 0),
("PCl5", 5, 0),
("SF6", 6, 0),
]
print(f"{'formula':<6} {'SN':>2} {'shape':<22} angle")
print("-" * 46)
for formula, b, l in cases:
sn, shape, angle = vsepr(b, l)
print(f"{formula:<6} {sn:>2} {shape:<22} {angle:5.1f}°")
If each line of the output matches the shape and angle predicted in the text, you have taken hold of the geometry of seven molecules with the one-line rule that electron pairs spread apart.
To the next chapter
In Chapter 9: How molecules interact with light we see which state a molecule’s electronic state — its shape, hybridization, term symbol — can transition to when it meets light, and how the selection rules for that are fixed. The photon picture of chapter 4 and the state picture of this chapter merge there.