All Categories

Linear Algebra

Vectors, matrices, determinants and transformations

Determinant (2×2)

Intermediate
det(abcd)=adbc\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc

Determinant of a 2×2 matrix.

View details

Dot Product

Intermediate
ab=iaibi=abcosθ\vec{a}\cdot\vec{b} = \sum_i a_i b_i = |a||b|\cos\theta

Scalar product of two vectors.

View details

Cross Product Magnitude

Advanced
a×b=absinθ|\vec{a}\times\vec{b}| = |a||b|\sin\theta

Magnitude of the vector perpendicular to two vectors.

View details

Vector Magnitude

Intermediate
v=v12+v22+v32|\vec{v}| = \sqrt{v_1^2 + v_2^2 + v_3^2}

Length of a vector.

View details

Eigenvalue Equation

Advanced
Av=λvA\vec{v} = \lambda\vec{v}

Defines eigenvalues and eigenvectors of a matrix.

View details

Inverse of a 2×2 Matrix

Advanced
A1=1adbc(dbca)A^{-1} = \frac{1}{ad-bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

Inverse of a 2×2 matrix (ad−bc ≠ 0).

View details

Trace of a Matrix

Intermediate
tr(A)=iaii\text{tr}(A) = \sum_i a_{ii}

Sum of the diagonal entries of a square matrix.

View details

Vector Projection

Advanced
projba=abb2b\text{proj}_{\vec{b}}\vec{a} = \frac{\vec{a}\cdot\vec{b}}{|\vec{b}|^2}\vec{b}

Projection of vector a onto vector b.

View details

Matrix Addition

Basic
(A+B)ij=aij+bij(A+B)_{ij} = a_{ij} + b_{ij}

Matrices of equal size add entry by entry.

View details

Scalar Multiplication

Basic
(cA)ij=caij(cA)_{ij} = c\,a_{ij}

Multiply every entry of a matrix by a scalar.

View details

Identity Matrix

Basic
AI=IA=AAI = IA = A

The identity matrix leaves any matrix unchanged under multiplication.

View details

Matrix Transpose

Intermediate
(AT)ij=aji(A^T)_{ij} = a_{ji}

Reflects a matrix across its main diagonal.

View details

Determinant (3×3)

Advanced
det=a(eifh)b(difg)+c(dheg)\det = a(ei-fh) - b(di-fg) + c(dh-eg)

Determinant of a 3×3 matrix by cofactor expansion.

View details

Matrix Trace

Intermediate
tr(A)=iaii\text{tr}(A) = \sum_i a_{ii}

Sum of the diagonal entries of a square matrix.

View details

Dot Product

Basic
ab=aibi\mathbf{a}\cdot\mathbf{b} = \sum a_i b_i

Sum of componentwise products of two vectors.

View details

Vector Magnitude

Basic
v=vi2\|\mathbf{v}\| = \sqrt{\sum v_i^2}

Length of a vector.

View details

Angle Between Vectors

Intermediate
cosθ=abab\cos\theta = \frac{\mathbf{a}\cdot\mathbf{b}}{\|a\|\|b\|}

Angle from the dot product and magnitudes.

View details

Scalar Triple Product

Advanced
a(b×c)\mathbf{a}\cdot(\mathbf{b}\times\mathbf{c})

Volume of the parallelepiped spanned by three vectors.

View details

Identity Matrix Property

Basic
AI=IA=AAI = IA = A

Multiplying by the identity leaves a matrix unchanged.

View details

Transpose of a Product

Advanced
(AB)T=BTAT(AB)^T = B^T A^T

The transpose of a product reverses the order.

View details

Rank-Nullity Theorem

Advanced
rank(A)+nullity(A)=n\text{rank}(A) + \text{nullity}(A) = n

Relates rank and null space dimension to columns.

View details

2×2 Matrix Product

Intermediate
[abcd][efgh]=[ae+bgaf+bhce+dgcf+dh]\begin{bmatrix}a&b\\c&d\end{bmatrix}\begin{bmatrix}e&f\\g&h\end{bmatrix} = \begin{bmatrix}ae+bg&af+bh\\ce+dg&cf+dh\end{bmatrix}

Product of two 2×2 matrices.

View details

Unit Vector

Basic
v^=vv\hat{\mathbf{v}} = \frac{\mathbf{v}}{\|\mathbf{v}\|}

Vector of length one in the same direction.

View details

Determinant of a Product

Advanced
det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B)

The determinant of a product is the product of determinants.

View details