Ask Your Question
1

Entries in canonical_matrix for Coxeter groups

asked 2019-11-06 18:05:59 +0200

Bob67846 gravatar image

Can anyone please tell me what a is doing in the following output? (Depending on the ordering of the Dynkin diagram, I believe it should be either 1 or 3.)

sage: W = WeylGroup(["G",2]) ; s = W.simple_reflections() ; s[2].canonical_matrix()

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2019-11-06 20:23:30 +0200

tmonteil gravatar image

updated 2019-11-06 21:12:14 +0200

a is the square root of 3, as the coefficients of this matrix are defined on the number field with defining polynomial x^2 - 3, see:

sage: M = s[2].canonical_matrix()
sage: M.parent()
Full MatrixSpace of 2 by 2 dense matrices over Number Field in a with defining polynomial x^2 - 3 with a = 1.732050807568878?
sage: M
[ 1  0]
[ a -1]
sage: M[1,0]
a
sage: M[1,0]^2
3
edit flag offensive delete link more

Comments

Woops, thanks!

Bob67846 gravatar imageBob67846 ( 2019-11-17 14:43:19 +0200 )edit

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2019-11-06 18:05:59 +0200

Seen: 107 times

Last updated: Nov 06 '19