Csmath2 Flashcards

(31 cards)

1
Q

Matrix is what type of array

A

Rectangular array

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

What is the number of rows by the number of columns

A

Size/dimension of matrix

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

Inside the matrix is called

A

Entries/elements

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

Consider matrix A of size mxn , if m = n, what type of matrix is this?

A

Square matrix of order n
(3x3 can just be said as 3)

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

Size mxn, if m = 1, then A is a ____

A

Row matrix

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

Size mxn, if n = 1, then A is a ____

A

Column matrix

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

When are matrices A and B equal?

A
  • If size of A and B are the same
  • if entries/elements of A and B are the same
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Condition for matrix addition

A

Matrices must have the same size

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

What is the sum of matrices with different size?

A

Undefined

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

Properties of matrix addition

A

Commutative: A+B = B+A
Associative:
(A+B)+C = A+(B+C) = (C+B)+A

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

Scalars are what type of numbers?

A

All real numbers

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

Requirement for subtracting A and B

A

-A n B must have same size

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

What represents A-B?

A

Sum of A and (-1)B

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

Properties of subtraction

A

-NOT commutative: A-B ISNT B-A

-NOT associative: (A-B)-C ISNT A-(B-C)

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

For any matrix A, there is a unique matrix, such that if you add A and this matrix together, it is equal to A

A

Zero matrix/additive identity (O)

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

For each A, there is a unique B where A+B = O

A

Additive inverse
B = additive inverse of A
Or scalar multiple of -1

17
Q

Properties of scalar multiplication

A

-associative: (rs)A = r(sA)
r and s are scalars

-distributive: r(A+B) = rA + rB

(r+s)A = rA + sA

18
Q

Are O matrix unique for every dimension?

A

Yes, there’s only 1 O matrix for every nxn matrix

19
Q

Requirement for distributive property of scalar multiple

A

A and B must be of equal size
r(A+B) = rA + rB

20
Q

Properties of Mult matrices

A

-NOT commutative: AxB ISNT BxA
-IS associative: Ax(BxC) = (AxB)xC
-distributive: (A+B)C = AC + BC

21
Q

Requirements for AxB

A

of Columns of A must be the same as the # of rows of B

22
Q

Size of AxB

A

row of A by column of B

23
Q

(rA)B = r(AB) = A(rB)

24
Q

If A is an mxn matrix, the transpose of A is?

A

an nxm matrix

25
How can u obtain the transpose
Interchange rows & cols
26
If size of A is 2x3 and B is 3x2 what is their SUM?
Undefined
27
If size of A is 2x3 and B is 3x2 what is the SUM of A and B^T
Defined
28
Properties of transpose (sum)
(A+B)^T = A^T + B^T
29
Properties of transpose (prod)
(AB)^T = B^T * A^T
30
Properties of transpose (transpose)
(A^T)^T = A
31
Properties of transpose (scalar mult)
(rA)^T = rA^T