File: 3.9.1

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 (17 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#Uses Singular software.
G:=QuaternionGroup(8);;
N:=Center(G);;
Einf:=LHSSpectralSequenceLastSheet(G,N);
Print(Einf,"\n");
A:=Mod2CohomologyRingPresentation(G,5);
Print(A,"\n");
L:=LHSSpectralSequence(G,N,4);
Print(L,"\n");
ring := PolynomialRing(GF(2), 3);;
x := ring.1;; y := ring.2;; z := ring.3;;
d := HAPDerivation(ring, [x^2 + x*y + y^2], [Zero(ring), Zero(ring), x^2*y + x*y^2]);
Print(d,"\n");
H:=HomologyOfDerivation(d);
Print(H,"\n");
Print(H[3]!.SourceGenerators,"\n");
Print(H[3]!.ImageGenerators,"\n");