permutations (version 1.0-9)

sgn: Sign of a permutation

Description

The sign of a permutation is \(\pm 1\) depending on whether it is even or odd

Usage

sgn(x)
is.even(x)
is.odd(x)

Arguments

x

permutation object

Author

Robin K. S. Hankin

Details

Coerces to cycle form

See Also

shape

Examples

Run this code

sgn(id)  # always problematic

sgn(rperm(10,5))

x <- rperm(40,6)
y <- rperm(40,6)


stopifnot(all(sgn(x*y) == sgn(x)*sgn(y)))   # sgn() is a homomorphism


z <- as.cycle(rperm(20,9,5))
z[is.even(z)]
z[is.odd(z)]

Run the code above in your browser using DataLab