lightbulb
Key Concepts
< div id = "study-notes" style = "background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; line-height: 1.6;" >
1. Definition
A matrix is an ordered rectangular array of numbers or functions. A matrix with m rows and n columns is of order m × n.
2. Types of Matrices
- Row Matrix: Has only one row.
- Column Matrix: Has only one column.
- Square Matrix: Number of rows equals number of columns (m = n).
- Identity Matrix: A square matrix where diagonal elements are 1 and others are 0.
- Symmetric Matrix: Aᵀ = A.
- Skew-Symmetric Matrix: Aᵀ = -A.