File: 3.7.4

package info (click to toggle)
gap-hap 1.66%2Bds-1
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 55,348 kB
  • sloc: xml: 15,368; sh: 216; javascript: 155; makefile: 126; ansic: 57; perl: 36
file content (10 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
G:=SylowSubgroup(MathieuGroup(12),2);;
R:=ResolutionPrimePowerGroup(G,10);;
A:=ModPCohomologyRing(R);
S:=[];;
for n in [0..10] do
 B:=Filtered(Basis(A),x->A!.degree(x)=n);
 B:=Subalgebra(A,B);
 Add(S,B);
od;
Print(List(S,Dimension),"\n");