Skip to content
This repository was archived by the owner on Aug 27, 2020. It is now read-only.

Chapter 3

Jonathan Ho edited this page Aug 2, 2020 · 1 revision

3.1 Introduction to Determinants

For n >= 2, the determinant of an n x n matrix A = [aij] is the sum of n terms of the form +-a1j det A1j, with plus and minus signs alternating, where the entries a11, a12, ..., a1n are from the first rows of A. In symbols, det A = a11 det A11 - a12 det A12 + ... + (-1)(1+n) a1n det A1n = sum from j = 1 to n of (-1)(1+j) a1j det A1j.

Given A = [aij], the (i, j) - cofactor of A is the number Cij given by Cij = (-1)(i+j) det Aij. The determinant of an n x n matrix A can be computed by a cofactor expansion across any row or down any column. The expansion across the ith row is det A = ai1Ci1 + ai2Ci2 + ... + ainCin. The expansion across the jth column is det A = a1jC1j + a2jC2j + ... + anjCnj.

If A is a triangular matrix, then det A is the product of the entries on the main diagonal of A.

3.2 Properties of Determinants

Row Operations
Let A be a square matrix.
a. If a multiple of one row of A is added to another row to produce a matrix B, then det B = det A.
b. If two rows of A are interchanged to produce B, then det B = -det A.
c. If one row of A is multiplied by k to produce B, then det B = k x det A.

A square matrix A is invertible if and only if det A is not equal to 0.

If A is an n x n matrix, then det AT = det A.

If A and B are n x n matrices, then det(AB) = det(A) x det(B).

Clone this wiki locally