Matrices Flashcards

(56 cards)

1
Q

How many rows and columns does the matrix An×m have?

In other words, which of n and m define the row and column

A

n rows
m columns

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

What does aij represent?

A

An element at the row i and column j

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

What is another word for a matrix with one row?

A

A row vector

often denoted by lower-case letters in bold type

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

What is another word for a matrix with one column

A

A column vector

often denoted by lower-case letters in bold type

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

What is another word for a matrix with one row and one column?

A

A number/scalar

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

What is a zero matrix?

A

A matrix in which all the entries/elements are 0

Sometimes written as 0m×n

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

What is a square matrix?

A

A matrix with equal number of columns and rows

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

What two conditions make the two matrices A=(aij) and B=(bij) equal?

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

True or false?

Matrices must have the same size to execute addition and subtraction

A

True.

Two matrices cannot be added nor subtracted if they are of different sizes

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

True or false?

Matrix addition/subtraction is both commutative and associative

A

True.

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

True or false? GIven a matrix A

A + 0ij = A

A

True.

Any matrix added to a zero matrix is still the original matrix

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

GIven matrices A and B

When can you multiply these matrices?

A

The product of AB exists if and only if the number of columns in A equals the number of rows in B

Note that the product will have the same number of rows as A and the same number of columns as B
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q
A
  • AA is possible
  • CA is not possible
  • AC is possible
  • BB is not possible
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

True or false?

Matrix multiplication is both commutative and associative

A

False. Matrix multiplication is only associative.

Meaning it does not matter how you bracket it
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

True or false? Matrix multiplication is distributive

25
26
How would you transpose a matrix?
Swapping the row with the column and the column with the row | Usually denoted by AT
27
28
# True or false? (A+B)T=AT+BT
True
29
# True or false? (AB)T=ATBT
False. But the following is true
30
What is an identity matrix
A **sqaure** matrix that when multiplied **on either side** of a matrix, A will give A
31
What does an identity matrix look like?
A diagonal line drawn down from top left to bottom right containing only 1's. Everywhere else is 0
32
# Given A is an m×m matrix What is A0 equal to?
It is equal to the identity matrix with m rows and m columns
33
34
What is an diagonal matrix?
A square matrix where everything but the diagonal is non-zero ## Footnote The identity matrix is an example of a diagonal matrix
35
How would you calculate the power of diagonal matrices?
Just power the components
36
What does it mean for a matrix to be non-singular?
A matrix, A is non-singular if it is square and there exists a matrix B such that both AB and BA equal the identity matrix I. | Non-singular is a synonym for 'invertable'. B is the inverse of A
37
# Given a matrix A How would you represent the inverse matrix of A?
A-1
38
39
# True or false? Not every square matrix is invertible
True
40
41
42
# True or false? (A-1)-1=A
True
43
# True or false? (AB)-1=B-1A-1
True
44
# What is another way to write the following? (AT)-1
(A-1)T | Switching the T and -1 positions
45
# Considering a 2×2 matrix How would you know if it is invertible?
ad-bc≠0
46
# Considering a 2×2 matrix, A and you know A is invertible How would you find the inverse of A?
47
48
49
50
What is the determinant?
A number that determines if a square matrix is invertible or not. | Usually denoted as det(A) or |A|
51
Calculate the following determinant
52
53
54
55
56