Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

How do I create the character table of the group of units mod n ?

asked 9 years ago

nilo de roock gravatar image

updated 8 years ago

FrédéricC gravatar image

I expected a character table from

g=Zmod(5).unit_group()
g.character_table()

instead I got an error message ending with

AttributeError: 'AbelianGroupWithValues_class_with_category' object has no attribute 'character_table'

How do I create the character table of the group of units mod n ?

Preview: (hide)

Comments

kcrisman gravatar imagekcrisman ( 6 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 9 years ago

vdelecroix gravatar image

You can use gap

sage: g=Zmod(5).unit_group()
sage: g_gap = gap(g)
sage: char = gap.CharacterTable(g_gap)
sage: irr = gap.Irr(char)
sage: gap.Display(irr)
[ [      1,      1,      1,      1 ],
  [      1,     -1,      1,     -1 ],
  [      1,   E(4),     -1,  -E(4) ],
  [      1,  -E(4),     -1,   E(4) ] ]
Preview: (hide)
link

Comments

See https://trac.sagemath.org/ticket/19329 for a followup that was never implemented to a similar question.

kcrisman gravatar imagekcrisman ( 6 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 9 years ago

Seen: 776 times

Last updated: Nov 06 '15