Linear Algebra

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/149

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:22 PM on 8/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

150 Terms

1
New cards

Matrix

A rectangular array of numbers arranged in rows and columns.

2
New cards

(m \times n) matrix

A matrix with (m) rows and (n) columns.

3
New cards

Row

A horizontal line of entries in a matrix.

4
New cards

Column

A vertical line of entries in a matrix.

5
New cards

Entry

An individual number in a matrix, often written (a_{ij}), where (i) identifies the row and (j) identifies the column.

6
New cards

Row index

The first subscript (i) in (a_{ij}); it identifies an entry’s row.

7
New cards

Column index

The second subscript (j) in (a_{ij}); it identifies an entry’s column.

8
New cards

Square matrix

A matrix whose number of rows equals its number of columns; equivalently, an (m \times n) matrix with (m=n).

9
New cards

Diagonal of a matrix

The entries (a_{ij}) for which (i=j), running from the upper-left toward the lower-right.

10
New cards

Upper triangular matrix

A matrix in which every entry below the diagonal is zero; equivalently, (a_{ij}=0) whenever (i>j).

11
New cards

Lower triangular matrix

A matrix in which every entry above the diagonal is zero; equivalently, (a_{ij}=0) whenever (i<j).

12
New cards

Diagonal matrix

A matrix in which every off-diagonal entry is zero; equivalently, (a_{ij}=0) whenever (i\ne j).

13
New cards

Off-diagonal entry

Any matrix entry not on the diagonal—that is, an entry (a_{ij}) where (i\ne j).

14
New cards

(\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.

15
New cards

Omitted entry

A blank matrix entry that is understood to be zero unless stated otherwise.

16
New cards

Vector

An ordered list of numbers, often treated as a one-column matrix.

17
New cards

(\mathbb{R}^n)

The set of all vectors with (n) real-number entries.

18
New cards

Zero vector

A vector in which every coordinate is zero.

19
New cards

Zero matrix

A matrix in which every entry is zero.

20
New cards

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.

21
New cards

Nonzero vector

A vector with at least one entry that is not zero.

22
New cards

Nonzero matrix

A matrix with at least one entry that is not zero.

23
New cards

Identity matrix

The (n\times n) diagonal matrix with 1s on the diagonal and 0s everywhere else.

24
New cards

(I_n)

Notation for the (n\times n) identity matrix.

25
New cards

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.

26
New cards

(\mathbf e_i)

The (i)-th standard basis vector: the vector with a 1 in position (i) and zeros elsewhere.

27
New cards

First pivot column

The first column of a matrix that is nonzero, meaning it has at least one nonzero entry.

28
New cards

Scalar

A single number used to multiply a vector or matrix.

29
New cards

Scalar multiple

A vector obtained by multiplying every entry of another vector by the same scalar.

30
New cards

Rank-one matrix

A matrix in which every column is a scalar multiple of its first pivot column.

31
New cards

Rank

A matrix concept related to the number of independent directions represented by its columns.

32
New cards

Symmetric matrix

A square matrix equal to its transpose, so (a_{ij}=a_{ji}).

33
New cards

Computer algebra system

Software that can perform symbolic and numerical mathematical computations.

34
New cards

Sage

A mathematical software system used to inspect matrix properties and construct matrices.

35
New cards

Matrix constructor

A built-in software command for creating a particular kind of matrix, such as a zero matrix, identity matrix, or diagonal matrix.

36
New cards
Scalar
A real number; scalars are the basic numerical objects used to build vectors and matrices.
37
New cards
Real numbers \(\mathbb{R}\)
All numbers on the number line, including negative numbers, zero, fractions, and irrational numbers such as \(\pi\).
38
New cards
Membership symbol \(\in\)
A symbol meaning “is an element of” or “belongs to.”
39
New cards
Vector
A vertical list of \(n\) scalars; a vector in \(\mathbb{R}^n\).
40
New cards
\(\mathbb{R}^n\)
The set of all vectors with \(n\) real-number coordinates.
41
New cards
Coordinate
One of the scalar entries in a vector.
42
New cards
Matrix
An array of scalars organized into rows and columns.
43
New cards
\(m \times n\) matrix
A matrix with \(m\) rows and \(n\) columns.
44
New cards
Row
A horizontal list of entries in a matrix.
45
New cards
Column
A vertical list of entries in a matrix.
46
New cards
Matrix entry
An individual scalar in a matrix.
47
New cards
\(i,j\) entry
The entry located in the \(i\)-th row and \(j\)-th column of a matrix, written \(a_{ij}\).
48
New cards
Scalar-vector product
Multiplying every coordinate of a vector by the same scalar.
49
New cards
Vector addition
Adding two vectors coordinate by coordinate; the vectors must have the same number of coordinates.
50
New cards
Scalar-matrix product
Multiplying every entry of a matrix by the same scalar.
51
New cards
Matrix addition
Adding two matrices entry by entry; the matrices must have the same number of rows and columns.
52
New cards
Shape
The dimensions of a vector or matrix. Vectors must have the same number of coordinates, and matrices must have the same dimensions, to be added.
53
New cards
Transpose
The matrix formed by interchanging the rows and columns of another matrix, written with a superscript \(T\).
54
New cards
Transpose notation
For a matrix \(A\), its transpose is written \(A^T\).
55
New cards
Transpose entry rule
The \(i,j\) entry of \(A^T\) equals the \(j,i\) entry of \(A\).
56
New cards
Transpose dimensions
If \(A\) is an \(m \times n\) matrix, then \(A^T\) is an \(n \times m\) matrix.
57
New cards
Horizontal vector notation
Writing a column vector as a row and applying a transpose symbol to save vertical space.
58
New cards
Linear operation
An operation that distributes over addition and scalar multiplication.
59
New cards
Linearity of transpose
\((c_1A_1+c_2A_2)^T=c_1A_1^T+c_2A_2^T\).
60
New cards
Involution
An operation that returns the original object when performed twice.
61
New cards
Involutive operation of transpose
\((A^T)^T=A\).
62
New cards
Symmetric matrix
A square matrix equal to its own transpose: \(S^T=S\).
63
New cards
Diagonal of a matrix
The entries \(a_{ii}\) running from the upper-left corner to the lower-right corner of a square matrix.
64
New cards
Symmetry across the diagonal
The property of a symmetric matrix in which \(a_{ij}=a_{ji}\); entries mirror one another across the diagonal.
65
New cards
Trace
The sum of the diagonal entries of an \(n \times n\) matrix.
66
New cards
Trace notation
The trace of a matrix \(A\) is often written \(\operatorname{tr}(A)\).
67
New cards
Trace as a scalar
The trace of a square matrix is a single number, not a matrix.
68
New cards
Linearity of trace
\(\operatorname{tr}(c_1A_1+c_2A_2)=c_1\operatorname{tr}(A_1)+c_2\operatorname{tr}(A_2)\).
69
New cards
Computer algebra system
Software that performs mathematical calculations symbolically or numerically.
70
New cards
Sage
A Python-based computer algebra system used in the lesson for calculations with scalars, vectors, and matrices.
71
New cards
Matrix syntax in Sage
The `matrix(...)` command used to define a matrix by listing its rows.
72
New cards
Vector syntax in Sage
The `vector(...)` command used to define a vector by listing its coordinates.
73
New cards
Matrix transpose syntax in Sage
The `.T` notation applied to a matrix to obtain its transpose.
74
New cards
Matrix trace syntax in Sage
The `.trace()` command applied to a square matrix to calculate its trace. [youtube](https://www.youtube.com/watch?v=3uNbT8X7zGo)
75
New cards
Linear combination
An expression formed by multiplying vectors by scalars and adding the results, such as \(c_1\mathbf v_1+\cdots+c_m\mathbf v_m\).
76
New cards
Weight
A scalar used to multiply a vector in a linear combination.
77
New cards
Matrix-vector product
The product \(A\mathbf v\), defined as a linear combination of the columns of \(A\), with the coordinates of \(\mathbf v\) as weights.
78
New cards
Compatibility criterion
The requirement that the number of coordinates in the input vector equals the number of columns of the matrix before \(A\mathbf v\) is defined.
79
New cards
Compatible matrix-vector product
A valid product \(A\mathbf v\) in which \(A\) has the same number of columns as \(\mathbf v\) has coordinates.
80
New cards
Illegal matrix-vector product
An undefined expression in which the vector’s number of coordinates does not equal the matrix’s number of columns.
81
New cards
\(m \times n\) matrix
A matrix with \(m\) rows and \(n\) columns.
82
New cards
Input vector
For an \(m\times n\) matrix \(A\), a vector \(\mathbf v\in\mathbb R^n\) that can be multiplied by \(A\).
83
New cards
Output vector
The result \(A\mathbf v\); if \(A\) is \(m\times n\), the output belongs to \(\mathbb R^m\).
84
New cards
Column combination
A linear combination whose vectors are the columns of a matrix.
85
New cards
Column weights
The coordinates of the vector used in a matrix-vector product; each coordinate scales the corresponding matrix column.
86
New cards
Matrix as a transformation
The view of a matrix as a machine that maps input vectors to output vectors through matrix-vector multiplication.
87
New cards
Matrix-vector product dimensions
If \(A\) is an \(m\times n\) matrix and \(\mathbf v\in\mathbb R^n\), then \(A\mathbf v\in\mathbb R^m\).
88
New cards
Linearity of matrix-vector multiplication
The rule \(A(c_1\mathbf v_1+c_2\mathbf v_2)=c_1A\mathbf v_1+c_2A\mathbf v_2\).
89
New cards
Identity rule
The rule \(I_n\mathbf v=\mathbf v\) for every vector \(\mathbf v\in\mathbb R^n\).
90
New cards
Identity matrix \(I_n\)
The \(n\times n\) matrix with 1s on the diagonal and 0s elsewhere; it leaves compatible vectors unchanged when multiplied by them.
91
New cards
Zero vector
The vector whose coordinates are all zero.
92
New cards
Zero rule
The rule \(A\mathbf0=\mathbf0\) for any matrix \(A\) with a compatible zero vector.
93
New cards
Arrow notation
A notation describing a matrix as a mapping from one vector space to another, such as \(A:\mathbb R^n\to\mathbb R^m\).
94
New cards
\(A:\mathbb R^n\to\mathbb R^m\)
Arrow notation stating that an \(m\times n\) matrix \(A\) takes vectors in \(\mathbb R^n\) as inputs and produces vectors in \(\mathbb R^m\) as outputs.
95
New cards
Square matrix
A matrix with the same number of rows and columns.
96
New cards
Eigenvector
A nonzero vector \(\mathbf v\) for which multiplying by a matrix \(A\) only scales the vector: \(A\mathbf v=\lambda\mathbf v\).
97
New cards
Eigenvalue
The scalar \(\lambda\) associated with an eigenvector in the equation \(A\mathbf v=\lambda\mathbf v\).
98
New cards
Eigenvector equation
The equation \(A\mathbf v=\lambda\mathbf v\), which defines an eigenvector and its associated eigenvalue.
99
New cards
Associated eigenvalue
The eigenvalue paired with a particular eigenvector of a matrix.
100
New cards
Eigenspace notation
Notation such as \(\mathbf v\in E_A(\lambda)\), meaning that \(\mathbf v\) satisfies \(A\mathbf v=\lambda\mathbf v\).