inverseOf w
Given a permutation in 1-line notation returns the inverse of the permutation in 1-line notation.
i1 : w = {2,5,4,1,3} o1 = {2, 5, 4, 1, 3} o1 : List
i2 : inverseOf w o2 = {4, 1, 5, 3, 2} o2 : List
The object inverseOf is a method function.