sage: Permutation([5,4,3,2,1]).parent()
Standard permutations
sage: Permutation('(1,5)(2,4)(3)').parent()
Standard permutations of 5
Why is the first not restricted to permutations of length 5?
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To
The `Permutation` function is more general. For example, the folllowing all
work:
sage: Permutation([2, 1, 4, 5, 3])
[2, 1, 4, 5, 3]
sage: Permutation((1,7))
[7, 2, 3, 4, 5, 6, 1]
sage: Permutation('(1,7)')
[7, 2, 3, 4, 5, 6, 1]
In particular, you do not need to specify the "degree" of the permu
Good Evening,
I am attempting to download the Sage Math program onto my Mac and I am
having difficulty with actually using the program. It seems to have created
a shortcut but will not open anything when I try to click on it or try to
run Jupyter. I am attempting to use the program for a Crypt
On 04.05.19 06:04, Andrew wrote:
> The `Permutation` function is more general. For example, the folllowing
> all work: [...]
Thank you. But sorry, this does not answer my question. Maybe I should
be more precise:
What is the idea behind
|
sage: Permutation([5,4,3,2,1]).parent()
Standard permutati