https://trac.sagemath.org/ticket/34760
thanks in advance,
Martin
--
You received this message because you are subscribed to the Google Groups
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to sage-devel+unsubscr...@googlegroups.com.
To view
Same times as last week, please join us!
Monday noon, 12:15pm San Francisco
Monday afternoon, 3:15pm New York
Monday afternoon, 17:15 Rio de Janeiro & Santiago de Chile
Monday evening, 21:15 Paris
Monday evening, 22:15 Johannesburg
Tuesday morning, 9:15am Auckland
https://meet.jit.si/VibrantTribe
These pexpect-based GAP classed in Sage are a mess.
The only reason they are still there is that few things are actually
implemented in Cython, avoiding GAP,
and they are somehow faster (while many things are much slower)...
(one needs to update https://trac.sagemath.org/ticket/26902 here)
Anyhow,
The following lines do what is to be expected:
sage: g = SymmetricGroup(3)
: u = g.subgroup([])
: x1 = u.trivial_character().induct(g)
: dummy = g.conjugacy_classes_subgroups()
: x2 = u.trivial_character().induct(g)
: print(x1 == x2)
: print(x1.scalar_product(x1))
: pri