Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

How to convert an element in a Symmetric group to a one-line notation in Sage

asked 4 years ago

lijr07 gravatar image

updated 4 years ago

Let Sn be the symmetric group over 1,2,,n. Let w=si1simSn, where si's are simple reflections. How to convert w to a one-line notation in Sage? The following are my codes.

W = WeylGroup("A7", prefix="s")
[s1,s2,s3,s4,s5,s6,s7] = W.simple_reflections()
w=s2*s4*s6

I want to convert w to a one line nation. Thank you very much.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

FrédéricC gravatar image

Rather use the symmetric group, in that case.

sage: W = SymmetricGroup(8)
sage: [s1,s2,s3,s4,s5,s6,s7] = W.simple_reflections()
sage: w = s2*s4*s6; w
(2,3)(4,5)(6,7)
sage: w.tuple()
(1, 3, 2, 5, 4, 7, 6, 8)
Preview: (hide)
link

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: 4 years ago

Seen: 322 times

Last updated: Apr 10 '20