Signature of a even/odd transposition

  • Thread starter Thread starter Matherer
  • Start date Start date
Matherer
Messages
2
Reaction score
0

Homework Statement



(1 2 3 4 5 6 7)
(1 2 5 4 3 6 7)

is s, a permuation.
Find sgn(s).

Homework Equations


The sgn of a transposition is -1.

Sgn(s)=Product of [sgn(j)-sgn(i)]/(j-i) when 1<=i<j<=n

The Attempt at a Solution


I calculated the sgn(s) using the formula and got 1. But shouldn't it actually be -1, since s is a transposition? If not, why is it not a transposition when only two elements are swapped and the rest are stationary?
 
Physics news on Phys.org
Matherer said:
Sgn(s)=Product of [sgn(j)-sgn(i)]/(j-i) when 1<=i<j<=n

This formula is wrong; actually it's nonsense, since whenever 1 \leq i &lt; j \leq n, \mathop{\mathrm{sgn}} i = \mathop{\mathrm{sgn}} j = 1 so \frac{\mathop{\mathrm{sgn}} j - \mathop{\mathrm{sgn}} i}{j - i} = 0.

The formula you're thinking of is \mathop{\mathrm{sgn}} \sigma = \prod_{1 \leq i &lt; j \leq n} \mathop{\mathrm{sgn}}(\sigma(j) - \sigma(i)) = \prod_{1 \leq i &lt; j \leq n} \frac{\sigma(j) - \sigma(i)}{|\sigma(j) - \sigma(i)|}. This is the product of -1 once for every inversion of \sigma, where an inversion of \sigma is a pair (i, j) where i &lt; j but \sigma(i) &gt; \sigma(j).

If you use the correct formula, you will reach the correct result -1.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top