The n + 1 rule in Earth’s Field NMR

I did not know this…
Author

Bryan Hanson

Published

August 18, 2023

I have been studying Earth’s Field NMR for a bit now. The other day I came across a paper that clued me into some additional interesting features of EF-NMR I was not aware of.

As all organic chemists know, in NMR we use the n+1 rule to determine splitting, and Pascal’s triangle as a nemonic to remember the relative areas of the peaks within a multiplet. For instance, we expect that the CHA3 group in ethanol to be a triplet with areas 1:2:1, due to the CHA3 group having two proton neighbors in the CHA2 group. We treat the two protons in CHA2 as magnetically equivalent.

J-Coupled Specta

The n+1 rule works at typical fields used for structural determination, let’s say 60 MHz and above. At these fields one is working in the so-called “weak coupling” region. However, as one lowers the field to really low values, one encounters the “strong coupling” region, where one observes “J-coupled-spectra” or JCS. Under strong coupling, the CHA2 protons in ethanol are no longer magnetically equivalent, and each of them couples differently to other nuclei, and the n+1 rule breaks down.

The strict requirement for JCS is that there be two or more protons attached to a spin 12 heteroatom and the magnetic field be quite small. For a simple system, let’s say HAiX HAj, the strict requirement to see separate lines for the no-longer-equivalent protons is:

|JXHiJXHj||JHiHj|

If this seems a bit strange, well, 1) it is, and 2) it has always been the case that the “equivalent” protons in for example a CHA2 group do couple, we just don’t normally see it or worry about it.

How Small is Small?

How small does the magnetic field have to be for J-coupled spectra to appear? This is covered in detail in Appelt et al. () but generally speaking JCS appear at around 106 to 104 Tesla. The magnetic field of earth is around 50 mT, right in the sweet spot. The Larmor resonance frequency for A1A221H at this field strength is around 2 kHz.

What Replaces the n+1 Rule?

In the case of a system like XHAN, the number of lines that will be observed is

no. of lines=2n=1,nUNNn+1

Where U is the set of odd numbers (for odd N, one evaluates until Nn=0; for even N, evaluate until Nn=1). The leading multiplier of 2 accounts for the doublet due to JAXH. This formula doesn’t exactly roll off the tongue. We can evaluate it to get the first few terms:

N <- 5L # evaluate 1:N terms
no.lines <- rep(NA_integer_, N) # initialize storage
for (i in 1:N) {
  odd <- (1:i) %% 2
  n <- (1:i)[as.logical(odd)] # get odd n no larger than N
  no.lines[i] <- sum(i - n + 1) # take advantage of R's vectorization
}
names(no.lines) <- paste("N=", 1:N, sep = "") # pretty it up
no.lines <- no.lines * 2 # account for J_HX
no.lines
N=1 N=2 N=3 N=4 N=5 
  2   4   8  12  18 

Examples

A couple of examples should clarify the situation. All of these will be from the perspective of observing A1A221H. These examples are taken from Appelt et al. ().

PHA2

At high field the A1A221H spectrum of PHA2 would be a symmetric doublet with a peak separation of JAPH.

In earth’s field, the spectrum is first split into a doublet by JAPH, but the spacing is not symmetric. Then, each part of the doublet is split further into two peaks, also asymmetrically and with varying linewidths. shows how the splitting changes as a function of field strength. Note that in the strong coupling region there are four peaks, as predicted above.

Appelt 2007 Fig. 4
Figure 1: Figure 4 from Appelt et al. (), showing the field dependence of the PHA2 spectrum.

CHA3OH

For the case of methanol in Earth’s field, the spectrum is first asymmetrically split by the A13A2213C with spacing JACH. Then each part of the doublet is further split into four peaks. shows the EF spectrum of methanol. The asymmetry of the line spacing and line widths is apparent.

Appelt 2007 Fig. 5
Figure 2: Figure 5 from Appelt et al. (), showing the spectrum of methanol.

Further Reading

For a broad overview of this topic, take a look at Kaseman et al. (); for a detailed walk-through of the theory with many more examples, see Appelt et al. (), and other papers by Appelt et al. Be prepared to spend some time with these papers.

References

Appelt, Stephan, F. Wolfgang Häsing, Holger Kühn, and Bernhard Blümich. 2007. “Phenomena in J-Coupled Nuclear Magnetic Resonance Spectroscopy in Low Magnetic Fields.” Phys. Rev. A 76 (August): 023420. https://doi.org/10.1103/PhysRevA.76.023420.
Appelt, Stephan, F. W. Häsing, U. Sieling, A. Gordji-Nejad, S. Glöggler, and B. Blümich. 2010. “Paths from Weak to Strong Coupling in NMR.” Phys. Rev. A 81 (February): 023420. https://doi.org/10.1103/PhysRevA.81.023420.
Kaseman, Derrick C., Per E. Magnelind, Scarlett Widgeon Paisner, Jacob L. Yoder, Marc Alvarez, Algis V. Urbaitis, Michael T. Janicke, Pulak Nath, Michelle A. Espy, and Robert F. Williams. 2020. Design and implementation of a J-coupled spectrometer for multidimensional structure and relaxation detection at low magnetic fields.” Review of Scientific Instruments 91 (5): 054103. https://doi.org/10.1063/1.5130391.

Footnotes

  1. 60 MHz chosen simply because commercial instruments have been available at that field for forever.↩︎

  2. The protons in something like CHA2ClA2 actually do couple to each other. With a little trick, you can measure JHH.↩︎

  3. This is a general trend. The exact boundaries between various coupling regimes depends on the nuclei involved, the coupling constants and the peak separation in Larmor frequency (in Hz).↩︎

  4. Remember, signals are very weak at EF so observing heteronuclei is significantly more challenging. See the previous post for details.↩︎

Reuse

Citation

BibTeX citation:
@online{hanson2023,
  author = {Hanson, Bryan},
  title = {The n + 1 Rule in {Earth’s} {Field} {NMR}},
  date = {2023-09-18},
  url = {http://chemospec.org/posts/2023-09-18-EF-NMR-2/EF-NMR-2.html},
  langid = {en}
}
For attribution, please cite this work as:
Hanson, Bryan. 2023. “The n + 1 Rule in Earth’s Field NMR.” September 18, 2023. http://chemospec.org/posts/2023-09-18-EF-NMR-2/EF-NMR-2.html.