Chapter 9: Basic Linear Algebra Flashcards
What is a vector?
A numerical way to describe, record and process spatial information.
A directed line segment. Defined by its length and direction.
What is a Matrix?
A numerical way to describe, record and process information about transformations of space
Define the sum of vectors and scalar multiple
Sum each component
x.v = x.(v1,v2…) = (x.v1, x.v2, …)
What are the properties of vector operations?
Commutative Associative vector 0 is the additive unit vector -v is the additive inverse Distributive mixed associativity ab(v) = (ab)v Multiply with scalar: 1v = v, 0v = vector 0 Multiply with zero vector a0 = vector 0 Multiply with negative scalar/ vector (-a)v = a(-v)
Given vectors v1, v2, …vk and scalars a1, a2, …, ak. Give the linear combination with scalar coefficients
a1v1 + a2v2 + … + akvk
Give the vector 0 as a linear combination without all coefficients being zero
(1 1 0) - (1 0 1) - (0 1 -1) = (0 0 0)
What is a linear transformation?
A function from R^n -> R^m
That preserves vector addition and scalar multiplication in R^n
T(v + w) = Tv + Tw
T(av) = a.T(v)
What is a square matrix?
A matrix with the same number of rows and columns
What is a zero matrix?
A matrix where all entries are 0
When are two matrices equal?
When they have the same number of rows and columns and the corresponding ij components are equal
How do we add matrices?
Add corresponding ij components
How do we form linear combinations of matrices?
they must all the m x n, perform any multiplication and addition to get one matrix
What is the dot product?
The inner product. It is the sum of vkwk for two matrices or vectors
How do we multiply matrices?
multiply the elements of the ith row with the jth column in a pairwise fashion and add them up.
A(m x n) x B(n x p) = C(m x p)
AB
define pre-multiplied and post-multiplied
B is pre-multiplied by A
A is post-multiplied by B