I have this product: $\prod_{i > j} ( i^2 - j^2 ) $ and I am trying to turn it into either a double product with one for $j$ and the other for $i$ or keep as a single product and rearrange $j$ in terms of $i$. (Note the $i,j$ are for matrix indexes).
I first thought $\prod_{i = 1} ( i^2 - (i-1)^2 ) $ however testing this a few times shows that it does not work... can anyone help me? (The products are up to $n$)
Note I am trying to remove $i>j$ from my product by splitting into two or some other way
You can write it as $\prod_{i=1}^n\prod_{j=1}^{i-1}(i^2-j^2)$ or $\prod_{j=1}^n\prod_{i=j+1}^n(i^2-j^2)$.