Highlights
- Pro
Pinned Loading
-
-
Blocks of characters
Blocks of characters 1## Usage:
2##
3#for G in AllCharacterTableNames(IsDuplicateTable, false) do
4#tbl := CharacterTable(G);
5#for p in AllPrimeDivisors(tbl) do
-
Radical subgroups and residual subgr...
Radical subgroups and residual subgroups 1ArgMax := function(list, func)
2local max, arg;
3max := Maximum(List(list, func));
4for arg in list do
5if func(arg) = max then
-
Frobenius groups
Frobenius groups 1## a Frobenius compelemnt of G
2FrobeniusComplement := function(G)
3local K, H;
4K := FittingSubgroup(G);
5if Size(K) = 1 or Size(K) = Size(G) then return fail; fi;
-
Partitions of abelian p-groups
Partitions of abelian p-groups 1LoadPackage("Hecke", false);
23# Return a finite abelian p-group
4# C_{p^{lambda_1}} x C_{p^{lambda_2}} x ...
5# for a partition lambda = (lambda_1, lambda_2, ...) and a prime p
-
Cayley diagrams
Cayley diagrams 1# https://sagecell.sagemath.org
23# Cayley diagram: x -> y if y = xs for a generator s
4def Cay(G, S, directed = True):
5C = DiGraph([G, lambda x, y: x^-1*y in S])
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.