Last active
November 11, 2020 07:29
-
-
Save nskeip/0e8473628f4b6815b3689c99a837d1ae to your computer and use it in GitHub Desktop.
Верно ли что если Н' нормальна в G, то H нормальна в G?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Верно ли что если Н' нормальна в G, то H нормальна в G? | |
# Нет. Приведем пример, когда H' нормальна в G, но H не нормальна в G | |
# полезное: IsNormal, DerivedSubgroup | |
# https://alex-konovalov.github.io/ukrgap/gapbook/chapC.html#X87D263A4841FD6A1 | |
for n in [3..10] do | |
G := SymmetricGroup(n); | |
Print("Checking ", n, "\n"); | |
for ccs in ConjugacyClassesSubgroups(G) do | |
H := Representative(ccs); | |
dH := DerivedSubgroup(H); | |
if not IsTrivial(dH) and IsNormal(G, dH) and not IsNormal(G, H) then | |
Print(G, "; H: ", H, "; H': ", dH, "\n"); | |
fi; | |
od; | |
od; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment