Chapter 1.3 Flashcards

0
Q

A matrix with only one column

A

A column vector or a column matrix.

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

Def: A matrix

A

A rectangular array of numbers, the numbers in the array are called entries in the matrix.

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

A matrix with only one row

A

A row vector or a row matrix

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

The size of a matrix

A

The m number of rows and n number of columns denoted as mxn

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

Numerical quantities when discussing matrices

A

Scalars

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

A matrix with n rows and n columns

A

A square matrix of order n

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

Th entries a11, a22, … , ann of a square matrix A

A

The main diagonal of A

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

Def: two equal matrices

A

Two matrices with the same size and whos corresponding entries are equal

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

Def: the sum of two matrices of the same size

A

The matrix obtained by adding the entries of B to the corresponding entries of A. Matrices of different sized cannot be addes.

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

Def: the difference of two matrices of the same size

A

The matrix obtained by subtracting the entries of B from the corresponding entries of A. Matrices of different sized cannot be subtracted.

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

Def: A scalar multiple of A

A

The product cA where c is any scalar, cA is a matrix obtained by multiplying each entry of A by c.

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

Matrix multiplication

A

If A is an mxr matrix and B is an rxn matrix the product AB is the mxn matrix whos entries are determined as follows:
To find the entry in row i and column j of AB, single out row i from A and column j from B. Multiply the corresponding entries from the row and column together. The sum of the resulting products is the entry ABij.

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

What is required by the definition of matrix multiplication?

A

That the number of columns in the first factor equals the number of rows in the second factor.

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

If A1, A2, … , Ar are matrices of the same size and c1, c2, … , cr are scalars, then the expression of the form c1A1 + c2A2 + … + crAr is called…

A

A linear combination of A1, A2, … , Ar with coefficients c1, c2, … , cr

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

If A is an mxn matrix, and if x is an nx1 column vector, then the product Ax can be expressed as

A

A linear combination of the column vectors of A in which the coefficients are the entries of x

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

The transpose of an mxn matrix A

A

The definition is the nxm matix that results from interchanging the rows and columns of A, that is: the first row of A is the first column of the transpose of A

16
Q

The trace of A (denoted tr(A))

A

If A is a square matrix, the trace is the sum of the entries along the main diagonal.

17
Q

A smaller matrix achieved by inserting horisontal and vertical rules between selected rows and columns (and the name of the method)

A

Submatrix achieved through partitioning

18
Q

The row or column method to compute rows or columns of AB

A

j:th column vector of AB = A[j:th column vector of B]

I:th row vector of AB = [i:th row vector of A]B