Given a function of mapping a n-dim input vector x to a m-dim output vector f:Rn↦Rm, the matrix of all first order partial derivates of this function is the Jacobian matrix J
The absolute value of the determinant can be thought of as a measure of “how much multiplication by the matrix expands or contracts space”.
Only exists for square matrices
if det(M) = 0, then M is not invertible
The determinant of a 2 × 2 matrix is acbd=ad−bc
determinant of a 3 × 3 matrix is adgbehcfi=aei+bfg+cdh−ceg−bdi−afh
nxn matrix M is detM=deta11a21⋮an1a12a22⋮an2………a1na2n⋮ann=∑j1j2…jn(−1)τ(j1j2…jn)a1j1a2j2…anjn
where the subscript under the summation j1j2…jn are all permutations of the set {1, 2, …, n}, so there are n! items in total; τ(.) indicates the signature of a permutation.