Magma V2.20-8 Thu Oct 9 2014 20:33:47 on mathcompprd07 [Seed = 541216274] Type ? for help. Type -D to quit. Loading startup file "/home/eobr007/.magma.startup" > load "code.m"; Loading "code.m" > // SetVerbose ("Classes", 1); > // SetVerbose ("RandomSchreier", 1); > // load "z.m"; > // SetEchoInput (true); > > // is vector space large enough? > CanHaveRegularOrbit := function (G) > d := Degree (G); > F := BaseRing (G); > V := VectorSpace (F, d); > o := #G; > if #V lt #G then "Vector space too small -- no regular orbit"; > return false, true; > else > return true, true; > end if; > end function; > > // determine if G has regular orbit by covering vector space > HasRegularOrbit := function (G: Limit := 1000) > d := Degree (G); > F := BaseRing (G); > V := VectorSpace (F, d); > o := #G; > if #V lt #G then "Vector space too small -- no regular orbit"; > return false, true; > end if; > > O := {}; > nmr := 0; > "Order of G is ", #G; > repeat > repeat > v := Random (V); > until not (v in O); > o := Orbit (G, v); > if #o eq #G then "Found regular orbit"; return true, true; end if; > O join:= o; > "... #O is now ", #O; > nmr +:= 1; > decided := #V - #O lt #G; > until decided or nmr gt Limit; > if decided then > "Proved no regular orbit"; return false, true; > end if; > if nmr gt Limit then > "Could not decide about regular orbit"; return false, false; > end if; > end function; > > /* find space centralised by g */ > CentralisedSpace := function (g) > G := Parent (g); > F := CoefficientRing (G); > A := MatrixAlgebra (F, Degree (G)); > a := A!g; > N := NullSpace (a - Identity (A)); > // "Nullspace has dimension ", Dimension (N); > return N; > end function; > > RefinedBound := function (G, n) > C := LMGClasses (G); > order := #G; > index := [i : i in [1..#C] | IsPrime (C[i][1]) and order mod C[i][1] eq 0]; > reps := [C[i][3]: i in index]; > sizes := [C[i][2]: i in index]; > spaces := [#CentralisedSpace (reps[i]) : i in [1..#reps]]; > size := &+[sizes[i] * spaces[i]: i in [1..#spaces]]; > p := Characteristic (BaseRing (G)); > e := Ilog (p, size); > assert p^(e + 1) ge size; > if p^e eq size then return e; else return e + 1; end if; > end function; > > Scalars := function (d, q) > F := GF (q); > nu := PrimitiveElement (F); > M := MatrixAlgebra (F, d); > s := ScalarMatrix (M, nu); > return sub; > end function; > > // H defined over GF(q); construct G = H \circ scalars of F_q > AddScalar := function (H) > F := BaseRing (H); > if #F gt 2 then > S := Scalars (Degree (H), #F); > G := sub; > return G; > else > return H; > end if; > end function; > > // L list of reps; n degree; Scalar: add scalar > // decide if rep has regular orbit > ProcessReps := function (L, n: Scalar := true) > for i in [1..#L] do > "Consider the following repn", i; > H := L[i]; > G := Scalar select AddScalar (H) else H; > > F := BaseRing (G); > p := Characteristic (F); > > "Input degree = ", Degree (G), " Defining field size = ", #F; > > // replace by absolute representation > if not IsPrime (#F) and not IsAbsolutelyIrreducible (G) then > G := AbsoluteRepresentation (G); > "Replaced G by its absolute representation"; > "New degree = ", Degree (G), "New field size = ", #F; > end if; > > // is G conjugate to group defined over smaller field? > if not IsPrime (#F) then > flag, H := IsOverSmallerField (G); > if flag then > G := H; > "Conjugated G to smaller field"; > "Degree = ", Degree (G), "New field size = ", #F; > end if; > end if; > > if not IsPrime (#F) then > G := WriteOverSmallerField (G, GF(p)); > "Rewrite G over prime field -- now degree = ", Degree (G); > end if; > > o := LMGOrder (G); > "Composition Factors of G is "; > LMGCompositionFactors (G); > > if CanHaveRegularOrbit (G) then > e := RefinedBound (G, n); > "Refined bound on degree is ", e; > if Degree (G) gt e then > "Over refined degree limit -- so G has regular orbit"; > regular := true; > else > regular := HasRegularOrbit (G); > // "Has regular orbit?", regular; > end if; > end if; > "========================================"; > end for; > return true; > end function; > > n := 6; > G := Alt (n); > RandomSchreier (G); > order := #G; > Primes := [2, 3, 5]; > > for i in [1..#Primes] do for> p := Primes[i]; for> "\n\nProcess n = ", n, "p = ", p; for> J := IrreducibleModules (G, GF (p)); for> L := [ActionGroup (j): j in J]; for> O := [LMGOrder (l): l in L]; for> L := [L[i]: i in [1..#L] | O[i] eq #G]; for> "Faithful reps for A6 over GF(", p, ") have dimensions:", [Degree (l): l in L], "\n"; for> "First representations for A6\n"; for> f := ProcessReps (L, n: Scalar := false); for> if p gt 2 then for|if> "\nNow representations for A6 x GF(p)^*\n"; for|if> f := ProcessReps (L, n); for|if> end if; for> end for; Process n = 6 p = 2 Faithful reps for A6 over GF( 2 ) have dimensions: [ 4, 4, 16 ] First representations for A6 Consider the following repn 1 Input degree = 4 Defining field size = 2 Composition Factors of G is G | Alternating(6) 1 Vector space too small -- no regular orbit ======================================== Consider the following repn 2 Input degree = 4 Defining field size = 2 Composition Factors of G is G | Alternating(6) 1 Vector space too small -- no regular orbit ======================================== Consider the following repn 3 Input degree = 16 Defining field size = 2 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 14 Over refined degree limit -- so G has regular orbit ======================================== Process n = 6 p = 3 Faithful reps for A6 over GF( 3 ) have dimensions: [ 4, 6, 9 ] First representations for A6 Consider the following repn 1 Input degree = 4 Defining field size = 3 Composition Factors of G is G | Alternating(6) 1 Vector space too small -- no regular orbit ======================================== Consider the following repn 2 Input degree = 6 Defining field size = 3 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 8 Order of G is 360 ... #O is now 72 ... #O is now 112 ... #O is now 184 ... #O is now 274 ... #O is now 346 ... #O is now 436 Proved no regular orbit ======================================== Consider the following repn 3 Input degree = 9 Defining field size = 3 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 9 Order of G is 360 Found regular orbit ======================================== Now representations for A6 x GF(p)^* Consider the following repn 1 Input degree = 4 Defining field size = 3 Composition Factors of G is G | Alternating(6) * | Cyclic(2) 1 Vector space too small -- no regular orbit ======================================== Consider the following repn 2 Input degree = 6 Defining field size = 3 Composition Factors of G is G | Alternating(6) * | Cyclic(2) 1 Refined bound on degree is 8 Order of G is 720 ... #O is now 72 Proved no regular orbit ======================================== Consider the following repn 3 Input degree = 9 Defining field size = 3 Composition Factors of G is G | Alternating(6) * | Cyclic(2) 1 Refined bound on degree is 9 Order of G is 720 ... #O is now 120 Found regular orbit ======================================== Process n = 6 p = 5 Faithful reps for A6 over GF( 5 ) have dimensions: [ 5, 5, 8, 10 ] First representations for A6 Consider the following repn 1 Input degree = 5 Defining field size = 5 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 6 Order of G is 360 Found regular orbit ======================================== Consider the following repn 2 Input degree = 5 Defining field size = 5 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 6 Order of G is 360 ... #O is now 30 ... #O is now 36 ... #O is now 216 ... #O is now 396 ... #O is now 456 ... #O is now 546 ... #O is now 726 ... #O is now 786 Found regular orbit ======================================== Consider the following repn 3 Input degree = 8 Defining field size = 5 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 7 Over refined degree limit -- so G has regular orbit ======================================== Consider the following repn 4 Input degree = 10 Defining field size = 5 Composition Factors of G is G | Alternating(6) 1 Refined bound on degree is 8 Over refined degree limit -- so G has regular orbit ======================================== Now representations for A6 x GF(p)^* Consider the following repn 1 Input degree = 5 Defining field size = 5 Composition Factors of G is G | Alternating(6) * | Cyclic(2) * | Cyclic(2) 1 Refined bound on degree is 6 Order of G is 1440 ... #O is now 360 ... #O is now 720 ... #O is now 960 ... #O is now 1440 ... #O is now 1680 ... #O is now 1704 Proved no regular orbit ======================================== Consider the following repn 2 Input degree = 5 Defining field size = 5 Composition Factors of G is G | Alternating(6) * | Cyclic(2) * | Cyclic(2) 1 Refined bound on degree is 6 Order of G is 1440 ... #O is now 120 ... #O is now 480 ... #O is now 720 ... #O is now 1200 ... #O is now 1380 ... #O is now 1620 ... #O is now 1980 Proved no regular orbit ======================================== Consider the following repn 3 Input degree = 8 Defining field size = 5 Composition Factors of G is G | Alternating(6) * | Cyclic(2) * | Cyclic(2) 1 Refined bound on degree is 7 Over refined degree limit -- so G has regular orbit ======================================== Consider the following repn 4 Input degree = 10 Defining field size = 5 Composition Factors of G is G | Alternating(6) * | Cyclic(2) * | Cyclic(2) 1 Refined bound on degree is 9 Over refined degree limit -- so G has regular orbit ======================================== Total time: 1.090 seconds, Total memory usage: 32.09MB