The determinant of a square matrix is the same as the determinant of its transpose. The transpose of a matrix can be obtained by reflecting the matrix across its main diagonal.
I was wondering how the determinant might change if we transform the matrix in other ways.
Setup
Suppose we have an $NxN$ matrix
$$ a_{11}\ a_{12}\ ...\ a_{1N}\\ a_{21}\ a_{22}\ ...\ a_{2N}\\ .\\ .\\ .\\ a_{N1}\ a_{N2}\ ...\ a_{NN} $$
whose determinant is $D$.
Rotation
If we rotate $M$ $90$ degrees clockwise to get $M_{rot}$
$$ a_{N1}\ a_{N-1,1}\ ...\ a_{21}\ a_{11}\\ a_{N2}\ a_{N-1,2}\ ...\ a_{22}\ a_{12}\\ .\\ .\\ .\\ a_{NN}\ a_{N-1,N}\ ...\ a_{2N}\ a_{1N} $$
how are the determinant of $M$ and $M_{rot}$ related?
Flip/reflection across horizontal axis
If we flip $M$ across a horizontal axis to get $M_{horizflip}$
$$ a_{N1}\ a_{N2}\ ...\ a_{NN}\\ .\\ .\\ .\\ a_{21}\ a_{22}\ ...\ a_{2N}\\ a_{11}\ a_{12}\ ...\ a_{1N} $$
how are the determinant of $M$ and $M_{horizflip}$ related?
Flip/reflection across vertical axis
If we flip $M$ across a vertical axis to get $M_{vertflip}$
$$ a_{1N}\ a_{1,N-1}\ ...\ a_{12}\ a_{11}\\ a_{2N}\ a_{2,N-1}\ ...\ a_{22}\ a_{21}\\ .\\ .\\ .\\ a_{NN}\ a_{N,N-1}\ ...\ a_{N2}\ a_{N1} $$
how are the determinant of $M$ and $M_{vertflip}$ related?