Tuesday, January 19, 2010

Instability of the QED vacuum at large fine structure constant

Today, in the "Mathematical Quantum Mechnics" lecture, I learned that the QED vacuum (or at least the quantum mechanical sector of it) is unstable when the fine structure constant gets too big.

To explain this, let's go back to a much simpler problem: Why is the hydrogen-like atom stable? Well, a simple answer is that you just solve it and find the spectrum to be bounded above -13.6Z^2{\rm eV}. But this answer does not extend to other problems that cannot be diagonalised analytically.

First of all, what is the problem we are considering? It's the potential energy of the electron which in natural (for atomic physics) units is V(r)=-\alpha Z/r. And this goes to negative infinity when r goes to 0. But quantum mechanics saves you. Roughly speaking (this argument can be made mathematically sound in terms of Hardy's inequality), if you essentially localise the electron in a ball of radius R and thus have the potential energy V\le-\alpha Z/R, Heisenberg's uncertainty implies the momentun is at least of the order 1/R and thus the kinetic energy is at least of the order +1/R^2. Thus, when R becomes small and you seem to approach the throat of the potential the positive kinetic energy wins and thus the Hamiltonian of the hydrogen atom is bounded from below. This is the non-relativistic story.

Close to the nucleus however, the momentum can be so big that you have to think relativistically. But then trouble starts as at large momenta the energy grows only linearly with momentum and thus the kinetic energy only scales like +1/R which is the same as the potential energy. Thus a more careful calculation is needed. The result of it is that it depends on \alpha Z which term eventually wins. Above a critical value (which happens to be of order one) the atom is unstable and one can gain an infinite amount of energy by lowering the electron into the nucleus and quantum mechanics is not going to help.

Luckily, nuclei with large enough Z do not exist in nature. Well, with the exception of neutron stars which are effectively large nuclei. And there it happens. All the electrons are sucked into the nuceus and fuse with the protons to neutrons. In fact, the finite size of the nucleon is what regulates this process as the 1/r nature of the Coulomb potential is smeared out in the nucleus. But such a highly charged atom would be only of the size of the nucleus (about some femto meters) rather than the size of typical atoms.

But now comes QED with the possibility of forming electron-positron pairs out of the vacuum. The danger I am talking about is the fact that they can form a relativistic, hydrogen like bound state. And both are (as far as we know) point like and thus there is no smearing out of the charge. It is only that \alpha Z\approx 1/137 in this case which luckily is less than one. If it would be bigger you could create this infinte amount of energy from the vacuum by pair creation and bringing them on-shell in their relative Coulomb throat. What a scary thought. Especially, since \alpha is probably only the vev of some scalar field which can take other values in other parts of the multiverse which would then disappear with a loud bang.

Some things come to my mind which in principle could help but which turn out to make things worse: \alpha is not a constant but it's running and QED has asymptotic slavery which means at short distances (which we are talking about) it gets bigger and makes things worse. Further, we are treating the electromagnetic field classically which of course is not correct. But my mathematical friends tell me that quantizing it also worsens things.

We know, QED has other problems like the Landau pole (a finite scale where \alpha goes to infinity due to quantum effects). But it seems to me that this is a different problem since it already appears at \alpha\approx 1.

Any ideas or comments?

Friday, October 09, 2009

Download compete twitter timeline

Upon popular request, I wrote a small script to download all tweets of a given twitter id. Have fun!


#!/usr/bin/perl

use Net::Twitter;
$|=1;

unless(@ARGV){
print "Usage: $0 twitter_id [sleep_seconds]\n";
exit 0;
}

my ($follow,$sleeper) = @ARGV;

# No account needed for this.
my $twit = Net::Twitter->new(username => 'MYNAME', password => 'XXX');

$p=1;
while(1){
my $result = $twit->user_timeline({id => $follow, page => $p});

foreach my $tweet (@{$result}){
print "At ", $tweet->{'created_at'},"\n";
print $tweet->{'text'},"\n\n";
}
++$p;
sleep $sleeper if $sleeper;
}


You might have to install the Net::Twitter module. This is most easily done as


sudo perl -MCPAN -e shell


and then (possibly after answering a few questions)


install Net::Twitter

Monday, October 05, 2009

Not so canonical momentum

Two weeks ago, I was on Corfu where I attended the conference/school/workshop on particles, astroparticles, strings and cosmology. This was a three week event, the first being on more conventional particle physics, the second on strings and the last on loops and non-commutative geometry and the like. I was mainly there for the second week but stayed a few days longer into the loopy week.

I think it was a clever move by the organisers of the last week to give five hours to the morning lecturers rather than one or two as in the string week. So they had the time to really develop their subjects rather than just mention a few highlights. John Baez has already reported on some of the lectures.

I would like to mention something I learned about elementary classical mechanics and quantum mechanics which was just a footnote in Ashtekar's first lecture but which was new to me: One canonical variable can have several canonical conjugates! In the loopy context, this appears as both the old and the new connection variables have the same canonical momentum although they differ by the Imirzi parameter times the second fundamental form (don't worry if you don't know what this is in detail, what's important that the 'positions' are different in the two sets of variables although they have the same canonical momentum).

How can this be? I always thought that if x is a canonical variable the conjugate variabel is determined by p=\partial L/\partial\dot x. What I had not realized is that you could for example take p'=p+x and obtain the same fundamental Poisson brackets (and consequently commuation relations after quantization). Similarly, you could add any function f(x) to the momentum without changing the commutation relations.

The origin of this abiguity can be found in the fact that also the Lagrangian is not unique: You can always add a total derivative without changing the action (at least locally, see below). For example, to obtain p'=p+f(x) by the derivative formula, add d/dt (\int f) to the action. The most general change would be to add d/dt \Lambda(x).

What about the quantum theory? This is most easily seen by realising that upon a gauge transformatio \delta A=d\Lambda, the action of a charge Q particle changes by Q\int d\Lambda. Thus our change in Lagrangian (with a corresponding change in the canonical momentum) can be viewed as a gauge transformation (even if no gauge field is around one could add a trivial one). Correspondingly, the wave function would have to be changed to \psi'=\psi e^{i\Lambda} as acting on \psi' by a canocially quantized p' is the same as \psi acted on by \psi.

So, it seems as if you would get exactly the same physics in the primed variables as in the unprimed ones. But we know that not all total derivatives have no influence on the qunatum theory the \theta-angle \int F\wedge F being the most prominent example. How would that appear in our much simpler quantum mechanics example? Here, it is important to remember that one should only use gauge transformations that are trivial at infinity. Here, if you change the phase of the wave function too wildly at x=\pm\infty you might leave the good part of the Hilbert space: For example the kinetic energy being an unbounded operator is not defined on all of Hilbert space but only on a dense subspace (most often taken to be some Sobolev space). And that you might leave by adding a wild phase and end up in a different self adjoint extension of the kinetic energy.

I have no idea if all this is relevant in the loopy case and the old and new variables or the variables are related by a (generalized) gauge transformation but at least I found in amusing to learn that the canonical conjugate is not canonical.

Saturday, August 08, 2009

Jazz makes you age faster

Before I head off for the travel season (first vacation: St. Petersburg, Moscow, Transsiberian Railway, Irkutsk, Baikal Lake, Ulan Ude and Mongolian Border, then two weeks of workshop in Corfu, then meeting collaborators in Erlangen and finally lecuring in Nis, Yugoslawia) - you won't notice any change in posting frequency - I would like to leave you with the latest statistic I learned about in "Sueddeutsche Zeitung" today:

In 1982, the average age of the audience of jazz concerts (don't know if in Germany or worldwide or whatsoever) was 29, today it is 64. So, even assuming immortality of improvised music enthusiasts, in 27 years, they got older by 35 years!

Note well that for an average of 64, if I attend a jazz concert being 36, we need 78ers to get back to the average.

Tuesday, July 14, 2009

Thermodynamic (in)stability of hydrogen

The interview season for the "Theoretical and Mathematical Physics" master programme at LMU is approaching quickly. We have to come up with new questions and problems that help us judge our applicants.

It turns out to be easy to find questions in quantum mechanics and those easily lead over to mathematics questions. However, we were always short on good stat mech problems. One possibility is to have an easy start with the harmonic oscillator and then couple that to a heat bath and compute the partition function (with geometric series featuring).

But this time, we thought we could vary this a bit and came to a surprising realization: Hydrogen is unstable! This was news to me but google finds a number of pages where this is discussed. Often wrongly, but the good explanation is in a 2001 paper by Miranda.

The idea is the following: Everybody knows that the energy of the n-th level of the hydrogen atom has energy proportional to 1/n^2. This level has degeneracy n^2 since l runs from 1 to n and m then runs from -l to l. So the partition function is Z(T) = sum_{n=1}^\infty n^2e^{Ry/kTn^2}. First, we thought that this might be a function named after some 19th century mathematician but mathematica told us its name is actually \infty since the exponent quickly approaches 1 for every positive T.

The conclusion seems to be that there is something wrong with the hydrogen atom. And we have not even started to consider the positive energy scattering states. Obviously, this problem has an IR divergence and it is probably better to embed it in some cavity of finite radius. But still, you would think that then for a large cavity, most of the statistical weight would be in the highly excited states and the probability to be in the ground state would go to zero as the cavity gets larger.

The conclusion would be that a hydrogen atom at any temperature would almost never be in its ground state but always highly excited or even ionized. And all this only because the density of states diverges at 0. This looks like a situations worse than the Hagedorn transition that strings experience due to the exponentially growing density of states.

The solution in the above mentioned paper is quite simple: Rather than these scaling arguments one should put in some numbers! Let us start with the Bohr radius, which is 5\cdot 10^{-11}m and the radius grows like n^2. This means in ameter sized cavity we can only fit states up to roughly n=10^5. However, at room temperature, Boltzmann exponent 13.6eV/kT \approx 527 and e^{527}\approx 7\cdot 10^{225}. Thus, to balance the Boltzmann suppression of the higher levels compared to the ground state one has to take into account at the order of 10^{225} states and not just the first 10^5. Or put differently, one should use and exponentially large cavity. Otherwise the partition function is essentially cut off at n=10^5 and the probablility to find the ground state is very very very close to 1.

Monday, July 06, 2009

Wrocław summary





So, I did not get around to live blog from the XXVth Max Born meeting "The Planck Scale". The main reason was, that there were no hot news or controversial things presented, rather people from the different camps talked about findings that a daily reader of hep-th had in some form or the other already noticed. I don't want to create the impression that it was boring, by no means. There were many interesting talks, there were just no breathtaking revelations. I myself am not an exception: I took the opportunity of having several loop-people in the audience to talk once more on the loop string, this time focussing on spontaneous breaking of diffeomorphism invariance.

By now, the PDFs are online and in a few days you will also find video footage. To get an idea what people discussed, the organizers had the idea to assemble tag clouds from the slides, some are above.

Let me mention a few presentations and speakers nevertheless. Steve Carlip talked about the notion of space-time being two dimensional at very short distances in several unrelated approaches. Related was a nice presentation of Silke Weinfurter on her papers with Visser on the scalar mode not decoupling in Horava gravity. That talk was probably on the most recent and hottest results and I had the impression that many other approaches still have to digest the lesson that it is non-trivial to modify gravity and still not throw out the baby with the bath tub.

Hermann Nicolai presented his work (together with Meissner) on a classically scale invariant version of the standard model in which the only dimensionful coupling (the Higgs squared term) arises from an anomaly. They claim that their model is compatible with the current data and would imply that LHC sees the Higgs and only the Higgs. Daniel Litim gave a nice overview over the asymptotic safety scenario for gravity. Bergshoeff and Skenderis talked about models related to 3d topologically massive gravity and Jose Figueroa-O-Farrill presented a summary of algebraic structures relevant for M2 theories.

Mavromatos discussed possible observations of time delays in gamma ray bursts and implications for bounding modifications of dispersion relations in quantum gravity. Steve Giddings talked about locality and unitarity in connection with black hole information loss and Catherine Meuseburger explained how in 3d gravity observers can make geometrical measurements with light rays to find the gauge invariant information on in which Ricci-flat world they are living.

I was surprised how many people still work on non-commutative geometry (in the various forms). The Moyal-plane, however, seems to be out of fashion (not so much because of UV-IR-mixing which I think is the main reason to be careful but many people seem to think they can work around that but are worried about unitarity on the other hand). Kappa-Minkowski is a space many people care about and Dopplicher explained why we live in quantum space-time. The general attitude seemed to be (surprisingly) that Lorentz-breaking in those theories is not an issue. However, Piacitelli, showed a calculation that should have been done quite a while ago: People say that although Lorentz invariance is broken that is not a problem since there is a twisted co-product version that preserves at least some related quantum symmetry. Piacitelly now spelled out what that means in everyday's terms: When you do a boost or rotation, twisting the co-product is equivalent to treating theta as a tensor and rotating that as well. Great, that explains why the formalism shows that rotational symmetry is preserved while the physics clearly says that a tensor background field singles out preferred directions. I had for a long time the suspicion that this is what is behind this Hopf-algebra approach but could never motivate myself enough to understand that in detail so I could confirm it.

In addition, there were many talks from loop-related people (also on spin foams, BF-type theories etc) about which I would like to mention just one: Modesto applied the reasoning found in the loop approach to cosmology (I would like to say more about this in a future posting) to a spherically symmetric space-time (i.e. what is Schwarzschild in the classical theory). What he finds is indeed Schwarzschild at large distances but the discretization inherent in that approach produces a solution that has a T-duality like R <--> l_p^2/R symmetry.

A great opportunity for meetings of this style with people coming from different approaches are always extended discussion sessions. Once more, those were a great plus (although not as controversial as a few years back in Bad Honnef), there were two, one on quantum gravity and one on non-commutative geometry.

There, once more, people complained that it is hard to do this kind of physics without new experimental input. Of course to a large degree, this is true. But to me it seems that also misses an important point: By no means, everything goes! At least you should be able to make sure you are really talking about gravity in the sense that in not so extreme regimes you recover well known physics (Newton's law for example). Above, I mentioned Horava gravity apparently failing that criterion and it seems many other approaches are not even there to be tested in that respect.

We often say, we work on strings because it is the only game in town. On that meeting you could have a rather different impression: It seemed more like everybody was playing more or less their on game and many didn't even know the name of their game. Another example of such a trivial non-trivial test is what your theory says about playing snooker: The kinetics of billard balls tests tensor products of Poincare representations of objects with trans-planckian momenta and energies. If your approach predicts weird stuff because it does not allow for trans-planckian energies my interpretation would be that you face hard times phenomenologically, even if your model agrees with CMB polarizations.

Monday, June 29, 2009

More conference blogging

Instead of String '09 I decided to attend this year the Born Symposium on the Planck scale. There are a number of stringy speakers as well as quite a few people from the loop camp. Watch this space for some reports. The talks (including video) will be online as well (as opposed to Strings '09).