Posts tagged determinants
Finding the transpose of a matrix and then finding its determinant

The transpose of a matrix is simply the matrix you get when you swap all the rows and columns. In other words, the first row becomes the first column, the second row becomes the second column, and the nth row becomes the nth column. The determinant of a transpose of a square matrix will always be equal to the determinant of the original matrix.

Read More
Cramer's rule for solving systems

Cramer’s Rule is a simple rule that lets us use determinants to solve a system of equations. It tells us that we can solve for any variable in the system by calculating D_v/D, where D_v is the determinant of the coefficient matrix, with the answer column values substituted into the column representing the variable for which we’re trying to solve, and where D is the determinant of the coefficient matrix.

Read More
Finding the cross product of two vectors

To take the cross product of two vectors (a1,a2,a3) and (b1,b2,b3), we’ll set up a 3x3 matrix with i, j, and k across the first row, the components from vector a across the second row, and the components from vector b across the third row. Then we’ll evaluate the 3x3 matrix by breaking it down into determinants.

Read More
Different ways of modifying determinants

Now that we understand what the determinant is and how to calculate it, we want to look at other properties of determinants so that we can do more with them.

Read More