[sage-support] Sage Math on Mac

2019-05-03 Thread Nick Karavas
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

[sage-support] Re: parent of permutation

2019-05-03 Thread Andrew
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

[sage-support] parent of permutation

2019-05-03 Thread Daniel Krenn
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.