lecture 9 - linear mappings Flashcards

1
Q

What is a mapping?

A

function f: E -> F where
E is a subset of R^n and F is a subset of R^m. U is a subset of E
f is a mapping if for all u in U, there exists some value v in F which directly maps to f(u) = w.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is domain?

A

function f: E -> F where
E is a subset of R^n and F is a subset of R^m. U is a subset of E

the set U of elements that are mapped to F are the domain

represented as dom(f)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is an image?

A

let f be mapping E -> F. The image of f are values w of set F which are mapped to from u where f(u) = w. a.k.a the set of vectors that have been transformed

The same as the range.

represented as Im(f)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

example of image?

A

for R -> R f(x) = x^2 + 2x + 2
the domain is dom(f) = R
and image is Im(f) = [1, infinity]
imagine a quadratic graph but only the right positive part

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is injective?

A

“no two inputs give same output”
this means that no two vectors mapped to the same vector
> when rank of A equals the number of columns
> if A is square matrix, injectivity happens when det(A) != 0
(non-singular)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is surjective?

A

“every possible output has an input”
> transformation covers entire output space
> if column space spans hte entire co-domain
rank(A) = number of rows
> if A is square matrix, surjectivity happens when det(A) != 0 (non-singular)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is bijective (invertible)?

A

When function is both injective and surjective
> occurs only when square matrix has a full rank.
> det(A) != 0 (non-singular) so A is invertible
> Rank of A = number of rows = number of columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a linear mapping?

A

A mapping that meets the requirements of:
additivity = if f(u + v) = f(u) + f(v) for all u, v of space E
homogeneity = if for all values of scalar λ that f(λv) = λf(v)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how are the linear mapping properties and vector space closures similar?

A

the L M properties are to ensure that when applying a linear mapping, it adheres to the closures inside of the vector space.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what proposition of linear mappings applies to the null vector?

A

if OE and OF are the null vectors of E and F vector spaces. linear mapping E > F follows that:
f(Oe) = oF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is the matrix representation of a linear mapping?

A

a linear mapping that can be expressed as the product of a matrix and a vector
y = f(x) = Ax where A is a matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you get an image from a matrix?

A

Image of a matrix is the set that spans the column vectors of a matrix A.
so Im(f) = L(a1, a2, … an)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

example of an image from a matrix

A

for f: R^3 > R^2 if A is:
1 -2 1
3 1 -1
the image is:
Im(f) = L((1,3),(-2,1),(1,-1))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is an endomorphism?

A

> a mapping that maps to itself e.g. f: E -> E
a transformation that takes vectors and generates a new vector in the same dimensionality
square matrices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is the kernel?

A

A set of elements v of vector space E who’s function is the null vector.
f(u - v) = Of (null vector)
u - v is an element of the kernel.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How is the kernel and injection related?

A

Mapping is injective IF and only IF ker(f) = {oE} (null vector)

e.g. if you take 2 different vectors and calculate their transformed vectors f(x,y,z) then you will not gain the same vector twice, so f is injective

this means that an injective mapping corresponds to a non-singular matrix, meaning that the kernel is only the null vector.