Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/yangbaxter/tst/testextra/   (GAP Algebra Version 4.15.1©)  Datei vom 14.6.2025 mit Größe 809 B image not shown  

Quelle  example25.tst   Sprache: unbekannt

 
Spracherkennung für: .tst vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

#
gap> START_TEST("example25.tst");

# Example 2.5
gap> br := SmallBrace(6,2);;
gap> add := UnderlyingAdditiveGroup(br);;
gap> mul := UnderlyingMultiplicativeGroup(br);;
gap> IdGroup(add);
62 ]
gap> IdGroup(mul);
62 ]
gap> StructureDescription(add);
"C6"
gap> StructureDescription(mul);
"C6"
gap> l := [];;
gap> for k in [1..NrSmallBraces(6)] do
> x := SmallBrace(6,k);
> if IdGroup(UnderlyingAdditiveGroup(x))=IdGroup(add)\
> and IdGroup(UnderlyingMultiplicativeGroup(x))=IdGroup(mul) then
> Add(l,k);
> fi;
> od;
gap> l;
2 ]
gap> left_ideals := ShallowCopy(LeftIdeals(br));;
gap> SortBy(left_ideals,Size);
gap> List(left_ideals, IdBrace);
[ [ 11 ], [ 21 ], [ 31 ], [ 62 ] ]
gap> List(left_ideals, x->IsIdeal(br, x));
[ true, true, true, true ]
gap> 

#
gap> STOP_TEST("example25.tst", 1);

[Dauer der Verarbeitung: 0.12 Sekunden, vorverarbeitet 2026-06-05]