Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ julia> G = matrix_group(g1, g2)
Matrix group of degree 3
over cyclotomic field of order 3

julia> chi = character_table(G)[6];
julia> tbl = character_table(G); F, _ = abelian_closure(QQ);

julia> p = x -> order(kernel(x)[1]) == 8 && x(G(g2)) == F(z_3);

julia> chi = iterate(x for x in tbl if p(x))[1];
Comment thread
joschmitt marked this conversation as resolved.
Outdated
Comment thread
lgoettgens marked this conversation as resolved.
Outdated

julia> RG = invariant_ring(G)
Invariant ring
Expand Down
Loading