ClubDogo said:
Hi everyone, I want to ask everybody if someone knows a book, or some lecture notes available on the net, to lear how to decompose the Lie Groups in irreps in physical notation, like
8_v \otimes 8_v=1+28+35
that can be found everywhere on books like BB&S or Polchinski.
It is really hard to understand what's goin' on without study that in a right way, but it turns out that this "physical" notation isn't so usual for mathematicians.
Thank you
As others have noted, this is the decomposition of tensor products of representations.
In this case these are reps of the simple lie algebra d4 (which can be made to correspond to the lie algebra so(8) and its associated lie group).
You could spend years studying the mechanics of how this is done. It's an interesting enough subject if you have the time. If you don't and just want to get an overall picture of what's happening while you think of other things, then you're better off skipping the mechanics and leave the details to a good math program...I use GAP (freely available)
An irrep for a simple lie algebra of rank n is uniquely defined by a n-tuple of
positive integers. In the case of d4, you need 4. Physicists substitue the dimension
of the irrep for these numbers. Most the time they can get away with it because
there's no ambiguity. Sometimes there is and they use subscripts, primes, overbars,...
There's choice of this notation is "folklore" more than anything else
In the case of d4 here's a "dictionary" :
[1,0,0,0] <-> 8_V
[0,1,0,0] <-> 28
[0,0,1,0] <-> 8_S+
[0,0,0,1] <-> 8_S-
[2,0,0,0] <-> 35 (this really should be 35_V)
[0,0,2,0] <-> 35_S+
[0,0,0,2] <-> 35_S-
[0,0,0,0] <-> 1
so your example :
[1,0,0,0] x [1,0,0,0] = [0,0,0,0] + [0,1,0,0] + [2,0,0,0];
the GAP code that does this is below :
L:=SimpleLieAlgebra("D",4,Rationals);
w1:=[1,0,0,0];
w2:=[1,0,0,0];
w3:=DecomposeTensorProduct(L,w1,w2);
d:=List(w3[1],x->DimensionOfHighestWeightModule(L,x));