1/149
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Matrix
A rectangular array of numbers arranged in rows and columns.
(m \times n) matrix
A matrix with (m) rows and (n) columns.
Row
A horizontal line of entries in a matrix.
Column
A vertical line of entries in a matrix.
Entry
An individual number in a matrix, often written (a_{ij}), where (i) identifies the row and (j) identifies the column.
Row index
The first subscript (i) in (a_{ij}); it identifies an entry’s row.
Column index
The second subscript (j) in (a_{ij}); it identifies an entry’s column.
Square matrix
A matrix whose number of rows equals its number of columns; equivalently, an (m \times n) matrix with (m=n).
Diagonal of a matrix
The entries (a_{ij}) for which (i=j), running from the upper-left toward the lower-right.
Upper triangular matrix
A matrix in which every entry below the diagonal is zero; equivalently, (a_{ij}=0) whenever (i>j).
Lower triangular matrix
A matrix in which every entry above the diagonal is zero; equivalently, (a_{ij}=0) whenever (i<j).
Diagonal matrix
A matrix in which every off-diagonal entry is zero; equivalently, (a_{ij}=0) whenever (i\ne j).
Off-diagonal entry
Any matrix entry not on the diagonal—that is, an entry (a_{ij}) where (i\ne j).
(\operatorname{diag}(d_1,\ldots,d_n))
Notation for the (n\times n) diagonal matrix with (d_1,\ldots,d_n) as its diagonal entries.
Omitted entry
A blank matrix entry that is understood to be zero unless stated otherwise.
Vector
An ordered list of numbers, often treated as a one-column matrix.
(\mathbb{R}^n)
The set of all vectors with (n) real-number entries.
Zero vector
A vector in which every coordinate is zero.
Zero matrix
A matrix in which every entry is zero.
Zero object notation
The notation (\mathbf{0}), often with a subscript such as (\mathbf{0}n) or (\mathbf{0}{m\times n}), indicating a zero vector or zero matrix of a particular size.
Nonzero vector
A vector with at least one entry that is not zero.
Nonzero matrix
A matrix with at least one entry that is not zero.
Identity matrix
The (n\times n) diagonal matrix with 1s on the diagonal and 0s everywhere else.
(I_n)
Notation for the (n\times n) identity matrix.
Standard basis vectors
The columns of (I_n), denoted (\mathbf e_1,\ldots,\mathbf e_n). Each has exactly one entry equal to 1 and all remaining entries equal to 0.
(\mathbf e_i)
The (i)-th standard basis vector: the vector with a 1 in position (i) and zeros elsewhere.
First pivot column
The first column of a matrix that is nonzero, meaning it has at least one nonzero entry.
Scalar
A single number used to multiply a vector or matrix.
Scalar multiple
A vector obtained by multiplying every entry of another vector by the same scalar.
Rank-one matrix
A matrix in which every column is a scalar multiple of its first pivot column.
Rank
A matrix concept related to the number of independent directions represented by its columns.
Symmetric matrix
A square matrix equal to its transpose, so (a_{ij}=a_{ji}).
Computer algebra system
Software that can perform symbolic and numerical mathematical computations.
Sage
A mathematical software system used to inspect matrix properties and construct matrices.
Matrix constructor
A built-in software command for creating a particular kind of matrix, such as a zero matrix, identity matrix, or diagonal matrix.