Matrix Basics Flashcards

1
Q

Order of row and column

A

(Row,Column)

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

Matrix Addition and Subtraction Rules

A

Must be the same size

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

What is an array?

A

A collection of elements within a single variable.

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

1D Array

A

Single row or column vector

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

2d Array

A

has both rows and columns

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

3d Array

A

Rows, columns and layers

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

Row vector

A

horizontal single line array

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

Column vector

A

vertical single line array

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

Matrix Addition and Subtraction

A

matrices must be same size
calculation is done element by element

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

Requirement for matrix multiplication

A

Inner dimensions must be the same

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

What does inner dimensions must be the same mean?

A

Rows must match columns i.e. 1x3 * 3x1

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

Matrix Arithmetic: Cumulative Law of Addition

A

A+B = B+ A

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

Matrix Arithmetic: Associative Law of Addition

A

A+(B+C) = (A+B)+C

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

Matrix Arithmetic: Associative Law of Multiplication

A

A(BC) = (AB)C

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

Matrix Arithmetic: Distributive Laws

A

A(B+C) = AB + AC
(A_B)C= AC + BC

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

Things to remember about Matrix division

A

-Typically not considered a matrix operation
-Inverted Matrices are used e.g. Ax=b = x = a ^-1b
-Not all matrices can be inverted
-Typically we use element by element in matlab