Matrix Transformation Flashcards
What’s domain, co-domain and range of a function?
Domain: space from which the input is drawn
Co-domain: space to which an input is transformed by the function
Range: Set of function outputs
What’s a vector valued function?
A vector valued function is a function where the range is a vector (it maps the values to R2 or higher space co-domains)
What’s a linear transformation?
Linear Transformation 00:00
A function is a linear transformation if and only if:
It’s a transformation that maps from Rn to Rm
And for a,b in Rn it satisfies two conditions:
1) T(a+b)=T(a)+T(b)
2) T(ca)=cT(a)
* c is scalar
How can we find the new coordination of a point, after applying a linear transformation on R2?
Matrix from visual representation of transformation
We should see where [1 0] and [0 1] land after transformation, then use linear transformation rules (T(a+b)=T(a)+T(b) and T(ca)=cT(a)) to find where a given point lands
Matrix products with a vector is always a ____
Linear transformation
All linear Transformations can be a matrix-vector product. True/False. Why?
True, because all we need to do is to calculate the result of the transformation for standard basis of the domain ([1 0] [0 1] for 2D), then multiply that, by whatever vector we have (input of transformation). This equals the vector’s transformation, therefore each linear transformation can be written as a matrix-vector product 11:10
We know that we can define a line in 2D or a higher space like this: ____
and we know that every matrix transformation is a ____ transformation
How can we write down the formula for matrix transformation of line L: T(L)?
{A+t(B-A)|t ∈ R}, A and B are vectors (vectors start from origin and end at a point’s coordination, so these two are vectors corresponding to two points on L)
Linear transformation
T(L)={T(A)+t (T(A)-T(B))|t ∈ R}
This means: in order to find T(L) we need to know the coordinates of two points on it
T(L) is called the ____ of L under the transformation T
Image
What is the image of a transformation?
When we transform a whole n dimensional space, it’s called Image of T.
technically it’s called image of Rn under T
T( Rn)={T(x)|x∈Rn}
Projection is a linear transformation. True/False
External
True
Is T(x)=T(I)x?why?
I: Identity matrix
x: column vector
Yes.
T(x)=T(Ix)=T(V1x1+…+Vnxn)= T(V1x1)+…+T(Vnxn)=
x1T(V1)+…+xnT(Vn)=
T([V1 … Vn] )[x1 … xn]=T(I)x
.
[x1 … xn] is a column vector
Vs are the vectors(columns) of the identity matrix
Note: T(I) is usually denoted by “A”, aka. transformation matrix
Is a composition of two linear transformations (applying two consecutive linear transformation on vector x), a linear transformation?
Yes