Linear Algebra Flashcards
What is a scalar?
A single number.
What is a vector?
An array of numbers, arranged in an indexed order.
How are vector variables represented?
Vectors have lowercase names in italic bold typeface: x
How are scalar variables represented?
They are written in lowercase italics: s
How is a set of vector indices defined?
S = { indices } then we write xS
Example: S = { 1, 3, 6 } are a set of the 1,3, and 6 indexes
How is the complement of a set indexed?
With a - sign:
x-1 is the vector of all elements of x except for x1
x-S is the vector of all elements of x except the set S
What is a matrix?
A matrix is a 2D array of numbers.
Each element is identified with two numbers.
How are matrix variables represented?
With an uppercase name in bold italics: A
How are rows and columns of a matrix indexed?
With a : symbol:
Ai,: represents the horizontal cross section i (row)
A:,i represents the vertical cross section i (column)
What is a tensor?
A matrix with more than two axes.
How are tensor variables represented?
With a bold capital letter: A
What is the transpose of a matrix?
A mirror image of the matrix across a diagonal line.
(AT)i,j = Aj,i

What is the name of the line across which a transpose is mirrored?
main diagonal
How is a transpose represented?
Superscript T:
AT
What is the transpose of a scalar?
The scalar is its own transpose.
What is the transpose of a vector?
A row vector becomes a column vector and vice versa.
How is matrix-matrix addition defined?
If they have the same shape, then:
C = A + B where Ci,j = Ai,j + Bi,j
Each element is added to the corresponding element.
How is matrix-scalar addition and multiplication defined?
The scalar is added or multiplied to each matrix element.
This is called an element-wise operation.
What is an element-wise matrix operation?
Performing the operation on each element of the matrix.
For example, in the addition of a scalar to a matrix.
How is matrix-vector addition defined?
The matrix C = A + b where Ci,j = Ai,j + bj
The vector b is added to each row of the matrix.
What is the shape of the matrix product?
If A is shape m,n and B is the shape n,p then
C is the shape m,p
What is the definition of the matrix product?
Ci,j = sum( Ai,k * Bk,j)
Or Ci,j as the dot product between row i of A and col j of B

What is the distributive property of matrix multiplication?
A(B+C) = AB+AC
What is the associative property of matrix multiplication?
A(BC) = (AB)C
Is matrix multiplication commutative?
No, the condition AB = BA does not always hold.
Is the dot product of two vectors commutative?
Yes
xTy = yTx
What is the transpose of a matrix product?
(AB)T = BTAT
Derive the commutative rule for the dot product of two vectors.
xTy = (xTy)T = yTx using the rule (AB)T = BTAT
What is the dot product of two perpendicular vectors and why?
The dot product is 0 because the projection of one vector onto the other is a point.
What is the sign of the dot product of two vectors that point away from each other?
Negative
What is the dual of a vector?
The linear transformation that it encodes.
What is the dual of a linear transformation to one dimension from some space?
A vector in that space.
What is the most common use of the dot product?
Testing if two vectors point in the same direction, or are perpendicular. It is also used for understanding projections.
What is the conceptual nature of a vector?
As encoding a linear transformation in some space.
As if the vector was shorthand for a linear transformation.
What equation describes a system of linear equations?
Ax = b
( Am,1x1 + Am,2x2 + … + Am,nxn ) = bm
Where A is a known matrix, b is a known vector, and x is a vector of unknown variables we would like to solve for.
Each element xi of x is one of these unknown variables.
Each row of A and each element of b provide a constraint.
What is the identity matrix?
A matrix that does not change any vector when we mutiply that vector by that matrix:
In
What is the matrix inverse of A?
The matrix inverse is the matrix A-1 such that:
A-1A = In
The matrix that when multiplied by A yields the identity.
Solve Ax=b for x
- Ax = b
- A-1Ax = A-1b
- I**n**x = A-1b because A-1A=In
- x = A-1b because Inx=x
Should A-1 be used in practice?
Rarely.
A-1 can be represented only with limited precision on a digital computer. As a result, making use of the value of b can usually obtain a more accurate estimate of x.
What is the fundamental condition required for A-1 to exist?
The equation Ax=b must have exactly one solution for every value of b.
What is a linear combination?
Ax = sum( xiA:,i )
A sum of vectors each multiplied by some corresponding scalar coefficient and adding the results.
What is the span of a set of vectors?
Span of a set of vectors is the set of all points obtainable by linear combinations of the original vectors.
span( v1, v2, … vn ) = { c1v1 + c2v2 + … cnvn | Ci∈ℝ 1<=i<=n }
How is span used to determine if Ax=b has a solution?
This amounts to testing whether b is in the span of the columns of A. This is the column space or the range of A.
In order for the system Ax=b to have a solution for all values b∈ℝ, what must be true of the column space of A?
The column space of A must be all of ℝ<em>m</em>
This implies that A must have at least m columns, or n≥m
What is linear independence?
A set of vectors is linearly independent if no vector in the set is a linear cominbation of the other vectors.
If we add a vector to a set that is a linear combination of the other vectors in the set, the new vector does not add any points to the set’s span.
In order for the column space of a matrix to encompass all of ℝm what must be true?
The matrix must contain at least one set of m linearly independent columns.
(The matrix must contain a coordinate frame that defines a space ℝm.)
What are the necessary and sufficient conditions for the system Ax=b to have a solution for all values b∈ℝ discoverable with the matrix inversion method?
A must have exactly m linear independent columns.
For A to have an inverse, A must be square (m=n) and that all of the columns be linearly independent.
Therefore, A must have m=n linearly independent columns.
What is a singular matrix?
A singular matrix is square and has linearly dependent columns.