Vectors are often represented as arrows or as ordered pairs/triplets of numbers, e.g., v = <3, 4>.
A matrix is a rectangular array of numbers arranged in rows and columns. The dimensions of a matrix are given as rows x columns.
A 2x2 matrix looks like:
[ a b ]
[ c d ]
The determinant is a special scalar value that can be calculated from a square matrix. It has many important applications, such as in solving systems of linear equations and in linear algebra.
For a 2x2 matrix A = [ [a, b], [c, d] ], the determinant, denoted as det(A) or |A|, is calculated as:
det(A) = ad - bc
In words: multiply the main diagonal (top-left to bottom-right) and subtract the product of the other diagonal (top-right to bottom-left).
Example: Find the determinant of the matrix [ [4, 7], [2, 3] ].
Given vector a = <2, 5> and vector b = <3, -1>, calculate the vector c = 2a + b.
Calculate the dot product of the vectors u = <6, -2> and v = <3, 9>.
What is the determinant of the matrix [[5, 2], [4, 3]]?