Matrix algebra Flashcards

1
Q

What are the dimensions of a matrix?

A

The number of rows by the number of columns

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

What property must two matrices have for addition to be possible?

A

They must have the same dimensions

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

How can two matrices A and B be added?

A

Each element in matrix A is simply added to the corresponding value in matrix B

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

How can a matrix be multiplied by a scalar?

A

By multiplying each element by the scalar

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

What property must two matrices A and B have for multiplication to be possible?

A

The number or columns in A must be equal to the number of rows in B

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

If matrix A has dimensions a×b and matrix B has dimensions b×c, what are the dimensions of matrix AB?

A

a×c

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

How can two matrices A and B be multiplied?

A

First work out the dimensions of the product. Then to find the element in the mth row and the nth column in the matrix AB: go through the mth row of A and, for each element in it, multiply it by the corresponding value in the nth column of B, and then add up these products

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

What can be said about the commutativity of matrix multiplication?

A

It is not commutative

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

What can be said about the associativity of matrix multiplication?

A

It is associative

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

What is a transformation?

A

An operation that moves all points in a plane according to some rule

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

What is a linear transformation?

A

A transformation that only involves linear expressions of x and y, and also leaves the origin unmoved

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

What is a position vector?

A

The vector from the origin to a point

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

What is an image?

A

The point to which a position vector is moved to after a transformation

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

What can be said about the distributivity of matrix multipliation?

A

It is distributive

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

For a linear transformation T:[(x),(y)]→[(ax+by),(cx+dy)], how can T be represented in matrix form?

A

[(a,b),(c,d)]

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

Given that a shape S has coordinates (x₁,y₁), (x₂,y₂), …, (xᵣ,yᵣ), how can the coordinates of the image of S under a transformation matrix M be found?

A

By transforming the coordinates into column vectors, making a matrix out of these vectors, and then multiplying M by this matrix, i.e. M[(x₁,x₂,…,xᵣ),(y₁,y₂,…,yᵣ)]

17
Q

How may the transformation represented by a matrix be found?

A

By applying it to the vectors [(1),(0)] and [(0),(1)] and observing the ensuing transformations

18
Q

What matrix represents an anticlockwise rotation of θ around the origin?

A

[(cos(θ),-sin(θ)),(sin(θ),cos(θ)]

19
Q

What matrix represents a reflection in the line x=0?

A

[(-1,0),(0,1)]

20
Q

What matrix represents a reflection in the line y=0?

A

[(1,0),(0,-1)]

21
Q

What matrix represents a reflection in the line y=x?

A

[(0,1),(1,0)]

22
Q

What matrix represents a reflection in the line y=-x?

A

[(0,-1),(-1,0)]

23
Q

What matrix represents an enlargement of scale factor n around the origin?

A

[(n,0),(0,n)]

24
Q

Given matrices A and B representing two transformations, how can the matrix for the transformation of A followed by the transformation of B be calculated?

A

BA

25
Q

What is the identity matrix?

A

A square matrix with ones down the main diagonal and zeros elsewhere

26
Q

How is the identity matrix notated?

A

I

27
Q

What property does the identity matrix have?

A

For any matrix A, AI=IA=A

28
Q

For a matrix [(a,b),(c,d)], how can the determinant be calculated?

A

ad-bc

29
Q

How is the determinant of a matrix M notated?

A

det(M)

30
Q

What is the inverse of a matrix M?

A

The matrix M⁻¹ such that MM⁻¹=M⁻¹M=I

31
Q

How is the inverse of a matrix M notated?

A

M⁻¹

32
Q

How can the inverse of a 2×2 matrix M with values [(a,b),(c,d)] be calculated?

A

(1/det(M))*[(d,-b),(-c,a)]

33
Q

What is a singular matrix?

A

A matrix with no inverse

34
Q

When is a matrix M singular?

A

When it is not square, or when det(M)=0

35
Q

For two matrices A and B, what is (AB)⁻¹ equal to?

A

B⁻¹A⁻¹

36
Q

Given the area of an object, A, and a matrix M whose transformation is applied to the object, how can the area of the image be calculated?

A

A*|det(M)|

37
Q

Given the simultaneous equations ax+by=c and px+qy=r, where a, b, c, p, q and r are constants, how can one solve for x and y using matrices?

A

Set up the matrix equation [(a,b),(p,q)][(x),(y)]=[(c),(r)]. Premultiplying by [(a,b),(p,q)]⁻¹ leaves [(x),(y)]=[(a,b),(p,q)]⁻¹[(c),(r)]