The determinant of a function is a function from nxn square matrix to a scalar such that it is defined as:
let a matrix P be defined as P= (aij) where i and j lie between 1 and n.
"\\sum_{{1<j<n}}" (-1)i+j a1,j det A1,j where A1,j is a sub-matrix of P.
properties of determinant:
determinant of 3x3 matrix:
"\\begin{vmatrix}\n 1 & 2 & 3 \\\\\n 4 & 1 & 2 \\\\\n 2 & 1 & 3 \\\\\n\\end{vmatrix}" = 1"\\begin{vmatrix}\n 1 & 2 \\\\\n 1 & 3\n\\end{vmatrix}" -2"\\begin{vmatrix}\n 4 & 2 \\\\\n 2 & 3\n\\end{vmatrix}" +3"\\begin{vmatrix}\n 4 & 1 \\\\\n 2 & 1\n\\end{vmatrix}" = 1-2(8)+3(2) = 1-16+6 = -9
Comments
Leave a comment