06-1350/Class Notes for Tuesday October 24

From Drorbn
Revision as of 15:14, 23 October 2006 by Drorbn (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

What Cyclic Permutations Can't See

Believe or not, but the following questions are directly related to class material.

Let denote the permutation group on letters and let denote its group ring. Let be the linear functional defined via its definition on generators by if the permutation is cyclic, and otherwise. Turn into a (symmetric!) bilinear form (also called ) on by setting .

Question 1. Determine the kernel of the bilinear form . (Recall that the kernel of a bilinear form is .

Question 2. For , I know by a lengthy computation (see below) that

(here denotes the transposition of and , denotes the permutation for which , and the bracket is taken in the additive sense: . Do you have quicker explanation?

Question 3. I suspect that in some sense, though I don't know in which sense, generates the whole kernel or at least some easily definable special part of the kernel of for all . Can you make sense of that?

The Lengthy Computation

The lengthy computation involves multiplying 24 "test permutations" against a linear combination of 8 permutations and counting cycles in the resulting 192 permutations. Here's a Mathematica session that does that:

In[1]:= S[n_] := (P @@@ Permutations[Range[n]]); c[p_P] := If[ Length[p] == Length[NestWhileList[p[[#]] &, p[[1]], # > 1 &]], 1, 0 ]; c[x_] := x /. p_P :> c[P]; Unprotect[NonCommutativeMultiply]; p1_P ** p2_P := p1 /. Thread[Rule[Range[Length[p2]], List @@ p2]]; p1_ ** (p2_ + p3_) := p1 ** p2 + p1 ** p3; (p1_ + p2_) ** p3_ := p1 ** p3 + p2 ** p3; p1_ ** (c_*p2_P) := c p1 ** p2; (c_*p1_P) ** p2_ := c p1 ** p2; b[a_, b_] := a ** b - b ** a;
In[2]:= H = b[P[2, 1, 3, 4], b[P[3, 2, 1, 4], P[4, 2, 3, 1]]] - P[1, 3, 2, 4] + P[1, 4, 3, 2] + P[3, 2, 1, 4] - P[4, 2, 3, 1]
Out[2]= -P[1, 3, 2, 4] + P[1, 4, 3, 2] + P[2, 3, 4, 1] - P[2, 4, 1, 3] - P[3, 1, 4, 2] + P[3, 2, 1, 4] + P[4, 1, 2, 3] - P[4, 2, 3, 1]
In[3]:= c[# ** H] & /@ S[4]
Out[3]= {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}