Lamb shift Updated 2025-07-16
2s/2p energy split in the hydrogen emission spectrum, not predicted by the Dirac equation, but explained by quantum electrodynamics, which is one of the first great triumphs of that theory.
Note that for atoms with multiple electrons, 2s/2p shifts are expected: Why does 2s have less energy than 1s if they have the same principal quantum number?. The surprise was observing that on hydrogen which only has one electron.
On the return from the train from the Shelter Island Conference in New York, Hans Bethe managed to do a non-relativistic calculation of the Lamb shift. He then published as The Electromagnetic Shift of Energy Levels by Hans Bethe (1947) which is still paywalled as of 2021, fuck me: journals.aps.org/pr/abstract/10.1103/PhysRev.72.339 by Physical Review.
The Electromagnetic Shift of Energy Levels Freeman Dyson (1948) published on Physical Review is apparently a relativistic analysis of the same: journals.aps.org/pr/abstract/10.1103/PhysRev.73.617 also paywalled as of 2021.
TODO how do the infinities show up, and how did people solve them?
Video 1.
Lamb shift by Dr. Nissar Ahmad (2020)
Source. Whiteboard Lecture about the phenomena, includes description of the experiment. Seems quite good.
Video 2.
Murray Gell-Mann - The race to calculate the relativistic Lamb shift by Web of Stories (1997)
Source. Quick historical overview. Mentions that Richard Feynman and Julian Schwinger were using mass renormalization and cancellation if infinities. He says that French and Weisskopf actually managed to do the correct calculations first with a less elegant method.
www.mdpi.com/2624-8174/2/2/8/pdf History and Some Aspects of the Lamb Shift by G. Jordan Maclay (2019)
Video 3. Source.
Mentions that he moved to the USA from the United Kingdom specifically because great experiments were being carried at Columbia University, which is where the Lamb-Retherford experiment was done, and that Isidor Isaac Rabi was the head at the time.
He then explains mass renormalization briefly: instead of calculating from scratch, you just compare the raw electron to the bound electron and take the difference. Both of those have infinities in them, but the difference between them cancels out those infinities.
Video 4.
Hans Bethe - The Lamb shift (1996)
Source.
Ahh, Hans is so old in that video, it is sad to see. He did live a lot tough. Mentions that the shift is of about 1000 MHz.
Video 5.
Lamb shift by Vidya-mitra (2018)
Source.
TODO: in high level terms, why is QED more general than just solving the Dirac equation, and therefore explaining quantum electrodynamics experiments?
Also, is it just a bunch of differential equation (like the Dirac equation itself), or does it have some other more complicated mathematical formulation, as seems to be the case? Why do we need something more complicated than
The main high level insight seems to be that The Dirac equation does not work for more than one electron.
Lecture notes that were apparently very popular at Cornell University. In this period he was actively synthesizing the revolutionary bullshit Richard Feynman and Julian Schwinger were writing and making it understandable to the more general physicist audience, so it might be a good reading.
We shall not develop straightaway a correct theory including many particles. Instead we follow the historical development. We try to make a relativistic quantum theory of one particle, find out how far we can go and where we get into trouble.
Oh yes, see also: Dirac equation vs quantum electrodynamics.
Talk title shown on intro: "Today's Answers to Newton's Queries about Light".
6 hour lecture, where he tries to explain it to an audience that does not know any modern physics. This is a noble effort.
Part of The Douglas Robb Memorial Lectures lecture series.
Feynman apparently also made a book adaptation: QED: The Strange Theory of Light and Matter. That book is basically word by word the same as the presentation, including the diagrams.
According to www.feynman.com/science/qed-lectures-in-new-zealand/ the official upload is at www.vega.org.uk/video/subseries/8 and Vega does show up as a watermark on the video (though it is too pixilated to guess without knowing it), a project that has been discontinued and has has a non-permissive license. Newbs.
4 parts:
This talk has the merit of being very experiment oriented on part 2, big kudos: how to teach and learn physics
Video 1.
Richard Feynman Quantum Electrodynamics Lecture at University of Auckland (1979) uploaded by Trev M (2015)
Source. Single upload version. Let's use this one for the timestamps I guess.
This book has formulas on it, which is quite cool!! And the formulas are basically not understandable unless you know the subject pretty well already in advance. It is however possible to skip over them and get back to the little personal stories.
Intel quantum computer Updated 2025-07-16
Video 1.
Architecture All Access: Quantum Computing by James Clarke (2021)
Source.
pyenv Updated 2025-07-16
virtualenv Updated 2025-07-16
python3 -m pip install --user virtualenv
virtualenv .venv
. .venv/bin/activate
pip install -r requirements.txt
RSA (cryptosystem) Updated 2025-07-16
Based on the fact that we don't have a P algorithm for integer factorization as of 2020. But nor proof that one does not exist!
The private key is made of two randomly generated prime numbers: and . How such large primes are found: how large primes are found for RSA.
The public key is made of:
Given a plaintext message m, the encrypted ciphertext version is:
c = m^e mod n
This operation is called modular exponentiation can be calculated efficiently with the Extended Euclidean algorithm.
The inverse operation of finding the private m from the public c, e and is however believed to be a hard problem without knowing the factors of n.
However, if we know the private p and q, we can solve the problem. As follows.
First we calculate the modular multiplicative inverse. TODO continue.

There are unlisted articles, also show them or only show them.