Re: [sage-support] Re: Coercion bug message when working with group algebras

2022-08-11 Thread keirh...@gmail.com
Ah, thanks! On Thursday, August 11, 2022 at 4:12:34 PM UTC-4 trevor...@gmail.com wrote: > There is a description/proposed fix of the problem on this trac ticket: > https://trac.sagemath.org/ticket/34292 > > On Thursday, August 11, 2022 at 12:44:59 PM UTC-7 keirh...@gmail.com > wrote: > >> This

Re: [sage-support] Re: Coercion bug message when working with group algebras

2022-08-11 Thread Trevor Karn
There is a description/proposed fix of the problem on this trac ticket: https://trac.sagemath.org/ticket/34292 On Thursday, August 11, 2022 at 12:44:59 PM UTC-7 keirh...@gmail.com wrote: > This code: > > > > > *H = PermutationGroup([ [(1,2), (3,4)], [(5,6,7),(12,14,18)] ])kH = > H.algebra(GF(2)

Re: [sage-support] Re: Coercion bug message when working with group algebras

2022-08-11 Thread keirh...@gmail.com
This code: *H = PermutationGroup([ [(1,2), (3,4)], [(5,6,7),(12,14,18)] ])kH = H.algebra(GF(2))[a, b] = H.gens()# Produces no coercion errorprint((kH(a) + kH(b) + H.one())^2)# Produces a coercion error in all cases belowtry: print((kH(a) + kH(b) + kH(kH.one()))^2)ex