Learning Objectives
Section 3.6 derived the structure factor and showed that diffraction intensity is proportional to . That formula contains a small surprise: some reciprocal-lattice vectors , even though they satisfy Bragg's law geometrically, give . Their Bragg peaks are invisible. These "missing" reflections are called systematic absences, and they are not a bug — they are a fingerprint of the symmetry inside the cell.
By the end of this section you will be able to:
- Explain, in one breath, why a reflection allowed by the Bravais lattice can still vanish — namely, that the basis atoms inside the cell add complex phasors that cancel.
- Read off the centring rules for SC, BCC, FCC, and diamond by inspection, and recognise them as the visible consequence of basis symmetry in reciprocal space.
- Identify systematic absences in a 2-D slice of reciprocal space and understand why iron's (100) peak is absent while its (110) peak is one of the brightest in the pattern.
- Recognise glide planes and screw axes as the next layer of symmetry that produces its own absence patterns — one notch deeper than centring.
- Compute for any cubic basis with a 15-line Python script, and connect that calculation to what VASP writes to OUTCAR for structure-factor analysis.
One-line preview. Bragg's law tells you which directions the lattice can scatter into. The structure factor tells you which of those directions actually carry intensity once the basis atoms inside the cell add up their contributions. Systematic absences are the directions where that sum is exactly zero.
The Puzzle — Geometry Said Yes, Intensity Said No
Imagine you have a cube of α-iron, the BCC phase of iron, mounted on an X-ray diffractometer. You run a powder scan. The first six peaks come out at the angles predicted by Bragg's law for the reflections (110), (200), (211), (220), (310), (222) — and only those reflections. The simple cubic peaks (100), (111), (210), (300) are not there. Not weak. Gone.
And yet, geometrically, those reciprocal-lattice vectors are perfectly legal. The Bravais lattice of BCC iron is a cubic lattice with for every triple of integers — including (100). Bragg's law does not forbid (100). What is killing it?
The answer in one sentence
The Bravais lattice of BCC has two atoms per conventional cell — one at the corner, one at the body centre. Their two scattered phasors are exactly opposite at and they add to zero. The geometry was right; the basis cancelled the intensity.
This is the seed of the entire section. Systematic absences are cancellations inside the unit cell, written into the structure factor by the symmetry of the basis. They are not measurement noise. They are the signal — the part of the diffraction pattern that tells you whether your sample is BCC or simple cubic, FCC or BCC, NaCl or diamond, even when all four would give peaks at exactly the same Bragg angles.
Quick Recap — The Structure Factor
From Section 3.6, the amplitude scattered into the reflection labelled is
where the sum runs over the atoms of the basis, are their fractional coordinates inside the conventional cell, and is the atomic form factor — how strongly atom scatters. The Bragg intensity is
Two things to notice. First, the geometry of the Bravais lattice has already been spent in choosing ; the structure factor only knows about what is inside one cell. Second, each basis atom contributes a unit phasor of magnitude at angle . If those phasors happen to sum to zero, the reflection vanishes — no matter how loud Bragg's law is shouting.
Why the 2π?
The factor is the price of using fractional coordinates. A whole lattice translation moves by 1, and we want the phasor to come back to itself — which happens only when the angle is a multiple of . The same showed up in the duality condition back in Section 3.2.
Atoms as Complex Phasors
The structure-factor sum has the perfect mental picture: every basis atom is a unit arrow on the complex plane, pointing at an angle that depends on where the atom sits inside the cell, and which reflection we are asking about. Add the arrows tip-to-tail. Where the last arrow ends is .
If the path closes back to the origin, the reflection is forbidden.
If the path stops far from the origin, the reflection is bright.
That is the whole physics. Let's try it on the easiest case. For BCC there are two atoms per conventional cell, at fractional positions and . Their phases for a reflection are and . The sum collapses to a single neat formula:
The (100) peak of α-iron has : forbidden. The (110) peak has : allowed, . Mystery solved by a single sum of two complex numbers.
Interactive — Watch the Phasors Cancel
Time to feel it. The widget below draws every basis atom as a unit phasor on the complex plane. Pick a lattice (SC, BCC, FCC, Diamond), choose a reflection , and watch the arrows add up tip-to-tail. The thick green or red arrow is the resultant from the origin to the end of the path.
Atomic phasors adding to F(hkl)
choose a lattice and pick (h, k, l)Each atom in the basis contributes a unit phasor e^(2πi(h·x + k·y + l·z)) on the complex plane. The structure factor F(hkl) is the tip-to-tail sum of these arrows. When the path closes back to the origin, the reflection is forbidden; when it stops far from the origin, the reflection is allowed.
| atom | position | 2π(h·x+k·y+l·z) | e^iθ |
|---|---|---|---|
| #1 | (0, 0, 0) | 0π | 1.000 + 0i |
| #2 | (½, ½, ½) | 1.000π | -1.000 + 0i |
| Σ | F(1, 0, 0) | 0 + 0i | |
What to play with
- Set the lattice to BCC and click the (100) preset. You will see two arrows pointing exactly opposite. The path returns to the origin — forbidden. Now click (110): the two arrows align — allowed.
- Switch to FCC and try (100): four arrows form a closed loop. Try (111): all four align in the same direction → .
- Switch to Diamond and try (222). All eight phasors pair off into opposing twos — forbidden — even though FCC alone allows (222). This is the extra absence rule that diamond adds on top of the FCC centring; we'll see why below.
The intuitive rule
A reflection is forbidden whenever the basis atoms split into two subsets whose phasors are exactly out of phase by . Centring puts the second atom at a half-vector; that half-vector is exactly the geometric symmetry that creates the cancellation. Systematic absences and centring symmetry are two views of the same fact.
Centring Rules — SC, BCC, FCC at a Glance
Repeat the phasor-sum exercise for each cubic Bravais lattice and the rules collapse into a small table. Memorise this — every working crystallographer can reproduce it from a back-of-envelope phasor argument.
| Lattice | Basis atoms (fractional) | F(hkl) | Selection rule (allowed when…) |
|---|---|---|---|
| Simple cubic (P) | (0, 0, 0) | f | always — every (h, k, l) is allowed |
| Body-centered (I) | (0, 0, 0), (½, ½, ½) | f [1 + e^{iπ(h+k+l)}] | h + k + l = even |
| Face-centered (F) | (0, 0, 0), (½, ½, 0), (½, 0, ½), (0, ½, ½) | f [1 + e^{iπ(h+k)} + e^{iπ(h+l)} + e^{iπ(k+l)}] | h, k, l all even or all odd (no mixed parity) |
| Diamond (Fd̄3m) | FCC + same shifted by (¼, ¼, ¼) | F_FCC × [1 + e^{iπ(h+k+l)/2}] | FCC rule AND not (h+k+l = 4n+2) |
A historical aside
These rules are why the very first crystal structure ever solved — NaCl, by W. L. Bragg in 1913 — was solvable at all. NaCl is FCC with a two-atom basis (Na at (0,0,0), Cl at (½,½,½) of the FCC cell). The allowed (h,k,l) pattern showed Bragg, before he had a single atom-by-atom map, that the lattice was face-centred. The absences were the diagnostic before the structure was.
Interactive — Allowed vs Forbidden Reflections
The next widget shows a slice of reciprocal space at fixed : a 9×9 grid of integer reflections . Bright cyan dots are allowed peaks (radius proportional to ); faint red crosses are systematically absent. Toggle between SC, BCC, FCC, Diamond and watch the forbidden zones snap into different patterns.
Allowed and forbidden reflections in the (hk0) plane
hover any spotA reciprocal-lattice slice at fixed l = 0. Bright cyan circles are allowed Bragg peaks (radius proportional to |F|, the diffraction amplitude). Faint red crosses are systematically absent reflections — they obey Bragg's law geometrically but their structure factor is exactly zero.
Three things to notice as you switch lattice. SC has no absences — every spot is bright. BCC kills exactly half of them on a checkerboard: odd disappears. FCC keeps only the "all-same-parity" reflections, leaving a much sparser pattern. Diamond starts from the FCC pattern and additionally extinguishes the even-only reflections with — most famously, (200) and (222) vanish in silicon and diamond even though FCC admits them.
The reverse problem. Looking at a powder X-ray pattern, an experimentalist works backwards: which (h,k,l) peaks are present and which are missing? That pattern of presences and absences uniquely identifies the centring of the Bravais lattice. The widget above is, almost literally, what they are reading.
Why It Looks the Way It Does — Cells in 3D
The selection rules feel less mysterious once you can see, in real space, where the "extra" atom or atoms sit. Below: BCC on the left has one extra atom at the body centre; FCC on the right has three extra atoms on the face centres of one cell (six face atoms shown, each shared with a neighbour). Drag to rotate.
Compare these visually against the SC cell — just eight corner atoms and nothing in the middle. The BCC body-centre atom is what creates the phasor that cancels odd-sum reflections. The FCC face-centre atoms create three different phasors that cancel any reflection where have mixed parity. The symmetry of the basis is, quite literally, the reason for the absence pattern.
The Diamond Twist — When (222) Goes Missing
Diamond, silicon, and germanium all share the diamond-cubic structure: an FCC lattice with a two-atom basis, the second atom shifted by . That fractional quarter is what makes diamond stiff, semiconducting, and… diffractometrically peculiar. Its structure factor factorises cleanly:
The first factor enforces the FCC rule; the second factor adds an extra penalty for some of the reflections that FCC would otherwise allow. Walk through the cases:
| (h, k, l) | F_FCC | h + k + l | 1 + e^{iπ(h+k+l)/2} | F_diamond | verdict |
|---|---|---|---|---|---|
| (1, 1, 1) | 4f | 3 (odd) | 1 − i | 4f(1 − i) | ALLOWED, |F|² = 32 f² |
| (2, 0, 0) | 4f | 2 (= 4n+2) | 1 + e^{iπ} = 0 | 0 | FORBIDDEN |
| (2, 2, 0) | 4f | 4 (= 4n) | 1 + 1 = 2 | 8f | ALLOWED, |F|² = 64 f² |
| (2, 2, 2) | 4f | 6 (= 4n+2) | 0 | 0 | FORBIDDEN |
| (3, 1, 1) | 4f | 5 (odd) | 1 + i | 4f(1 + i) | ALLOWED, |F|² = 32 f² |
| (4, 0, 0) | 4f | 4 (= 4n) | 2 | 8f | ALLOWED, |F|² = 64 f² |
Why this matters
The forbidden (200) and (222) reflections of silicon and diamond are not just textbook curiosities. Every powder XRD pattern of silicon shows the same fingerprint: (111), (220), (311), (400), (331), (422) present; (200), (222), (420) absent. If you ever see intensity at (200) of a silicon sample, it is either an instrumental artefact or a sign that your "silicon" has lost the diamond symmetry — which would be a major structural finding.
Glide Planes and Screw Axes — Beyond Centring
Centring is the simplest source of systematic absences, but the space groups of Chapter 1 contain richer symmetries: glide planes (mirror + half-translation) and screw axes (rotation + half-translation). Each leaves its own footprint in reciprocal space.
The mechanism is identical to what we just saw. A glide plane forces atoms to come in pairs related by a half-translation; that half translation generates a phasor of for certain reflections and they cancel. A two-fold screw axis along with translation kills all (00) reflections with odd, in exactly the same way BCC kills the odd .
The symmetry-to-absence dictionary the experimentalists use:
| Symmetry element | Reflection class | Absence rule |
|---|---|---|
| I-centring (BCC) | (h k l) | h + k + l = odd → absent |
| F-centring (FCC) | (h k l) | h, k, l of mixed parity → absent |
| A-centring | (h k l) | k + l = odd → absent |
| c-glide plane ⊥ a | (0 k l) | l = odd → absent |
| n-glide plane ⊥ a | (0 k l) | k + l = odd → absent |
| 2_1 screw along a | (h 0 0) | h = odd → absent |
| 4_1 screw along c | (0 0 l) | l ≠ 4n → absent |
| 6_1 screw along c | (0 0 l) | l ≠ 6n → absent |
The big picture
Every space group has a deterministic table of which reflections it forbids. Conversely, the pattern of absences in an experimental diffraction pattern narrows the space group down to a short list. The International Tables for Crystallography contain these tables for all 230 space groups; they are how a crystallographer turns a handful of missing peaks into a structural identification.
Computing F(hkl) from a VASP Cell
For a custom basis — say, a Mn-doped CdSe supercell where the symmetry-rule tables no longer apply directly — you compute straight from the structure-factor sum. Fifteen lines of Python suffice.
Click any line in the panel below to see the values flowing through it. The script reproduces the SC, BCC, FCC, diamond rules from first principles and prints whether each reflection is allowed:
Running the script prints (truncated):
1--- SC (1 atoms / cell) ---
2 F(1, 0, 0) = +1.00+0.00i |F|^2= 1.00 [ALLOWED]
3 F(1, 1, 1) = +1.00+0.00i |F|^2= 1.00 [ALLOWED]
4--- BCC (2 atoms / cell) ---
5 F(1, 0, 0) = +0.00+0.00i |F|^2= 0.00 [FORBIDDEN]
6 F(1, 1, 0) = +2.00+0.00i |F|^2= 4.00 [ALLOWED]
7 F(1, 1, 1) = +0.00+0.00i |F|^2= 0.00 [FORBIDDEN]
8 F(2, 2, 2) = +2.00+0.00i |F|^2= 4.00 [ALLOWED]
9--- FCC (4 atoms / cell) ---
10 F(1, 0, 0) = +0.00+0.00i |F|^2= 0.00 [FORBIDDEN]
11 F(1, 1, 1) = +4.00+0.00i |F|^2= 16.00 [ALLOWED]
12 F(2, 0, 0) = +4.00+0.00i |F|^2= 16.00 [ALLOWED]
13--- Diamond (8 atoms / cell) ---
14 F(1, 1, 1) = +4.00-4.00i |F|^2= 32.00 [ALLOWED]
15 F(2, 0, 0) = +0.00+0.00i |F|^2= 0.00 [FORBIDDEN]
16 F(2, 2, 2) = +0.00+0.00i |F|^2= 0.00 [FORBIDDEN]
17 F(3, 1, 1) = +4.00+4.00i |F|^2= 32.00 [ALLOWED]For a real VASP POSCAR, replace the hand-typed tuples with the fractional coordinates VASP wrote, and weight each phasor by the element-specific atomic form factor (a known function of the reciprocal vector's magnitude — tabulated for every element in the International Tables, Vol. C). The forbidden / allowed verdict does not change for centring absences; only the magnitudes do.
Reading VASP's structure factor output
When you run a calculation with off and ask for X-ray diffraction analysis (post-processing tool task 251 or external XRDCalculator), the tools internally call exactly this sum, multiplied by element form factors. Their output table — columns , , , , multiplicity, intensity — drops any row with : those rows are your systematic absences.
Reverse-Reading a Powder Pattern
The most common practical use of systematic absences is identification. Imagine you have a powder pattern of an unknown cubic phase. The first seven Bragg peaks come out at values that satisfy with sums-of-squares
versus a different sample where the sums are
These two sequences come from the same Bragg geometry but different centring. The first is BCC: the only allowed squared-sums are even (110, 200, 211, 220, 310, 222, 321 → 2, 4, 6, 8, 10, 12, 14). The second is FCC: only all-same-parity triplets, so 111, 220, 311, 400, 331, 422, 511 → 3, 8, 11, 16, 19, 24, 27. The list of sum-of-squares is the lattice fingerprint.
From peak positions to lattice type: compute for each peak, divide by the first one, look at the integer sequence. BCC gives 1, 2, 3, 4, 5, 6, 7. FCC gives the spaced-out 3, 4, 8, 11, 12 (modulo a common factor). Every undergraduate XRD lab discovers this trick on day one.
Common Pitfalls
- Confusing the conventional cell with the primitive cell. BCC has 1 atom per primitive cell, but 2 per conventional cubic cell. The structure factor formula uses whichever cell you wrote your in. Mixing them produces phantom or missing absences. The phasor visualiser above uses the conventional cubic basis; translate carefully if your software does something else.
- Treating a weak peak as forbidden. Different atomic form factors mean a near-extinguished reflection can have small but nonzero intensity. NaCl's "forbidden" (111) is only forbidden when ; in reality by a few electrons, so (111) appears as a weak — but real — peak. Systematic absences from centring are exact; absences arising only from equal form factors are not.
- Forgetting that the Diamond rule is multiplicative, not additive. Diamond is FCC times an extra factor. A reflection forbidden by FCC (e.g. (210)) stays forbidden in diamond — even though is odd, which would suggest "allowed" on the diamond-only rule. Always apply both factors, or use the formula .
- Numerical zero ≠ true zero. When you compute with floating-point arithmetic, is , not exactly . Use a tolerance — typically — instead of strict equality when classifying allowed vs forbidden.
- Assuming absences disappear in supercells. A supercell's reciprocal lattice is denser than the primitive one's, so more reflections seem to appear. They are mostly the original-cell reflections re-indexed; the underlying selection rules still hold. When VASP prints structure factors for a 2×2×2 cell, divide the indices by 2 to recover the conventional-cell labelling before checking against the centring rules.
Summary
- A systematic absence is a reflection allowed by the Bravais lattice but extinguished by destructive interference among the basis atoms inside the cell — .
- Each basis atom contributes a unit phasor at angle on the complex plane. The sum is the structure factor; if the phasors close into a loop, the reflection vanishes.
- The cubic centring rules: SC allows everything, BCC requires even, FCC requires all the same parity, diamond adds the further requirement that .
- Glide planes and screw axes generate their own absence rules — each symmetry operation that involves a half-translation will, somewhere in reciprocal space, force a phasor to and cancel a class of reflections. The pattern of absences is the experimental signature of the space group.
- The 15-line Python script implements the structure-factor sum directly. With a real basis (CdSe, Mn:CdSe) and element-specific , it gives the same numbers that or would print after a VASP run.
- Reading absences backwards from a powder XRD pattern is how experimentalists identify the centring of an unknown cubic phase. The BCC sequence and the FCC sequence are the two most recognised fingerprints in materials science.
Coming next: Section 3.8 — k-Point Grids and Convergence — where we leave diffraction behind and return to electronic-structure mode. The same Brillouin zone we have been navigating now becomes the integration domain for total energies; how finely we sample it (the in your KPOINTS file) controls every number VASP prints.