On Wednesday, April 27, 2016 at 2:00:42 PM UTC+1, Peter Mueller wrote: > > sage: AlternatingGroup(12).character_table() > File "<string>", line 2 > -zeta35**Integer(27)-zeta35**Integer(29)-zeta35**Integer(33) > ^ > IndentationError: unexpected indent > > Looking into the function character_table, there seems to be a problem in > converting the Gap cyclotomic integer to Sage cyclotomic integer. >
use libgap (it is a faster interface, too, and going to be the default soon, hopefully) sage: t=libgap.AlternatingGroup(5).CharacterTable() sage: it=t.Irr() sage: v=it[1].ValuesOfClassFunction(); v [ 3, -1, 0, -E(5)-E(5)^4, -E(5)^2-E(5)^3 ] sage: [x.sage() for x in v] [3, -1, 0, zeta5^3 + zeta5^2 + 1, -zeta5^3 - zeta5^2] HTH, Dima > > -- Peter Mueller > > -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
