Matrix Flashcards

(16 cards)

1
Q

Matrix scalar multiplication

A

Matrices can also be multiplied by a scalar. The rule is to just multiply every element of
the matrix. For example

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

Matrix multiplication

A

Matrices multiplied only if the number of columns of the
left matrix equals the number of rows of the right matrix. an m-by-n
matrix on the left can only be multiplied by an n-by-k matrix on the right. The resulting
matrix will be m-by-k. Evidently, matrix multiplication is generally not commutative

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

Commutative

A

An operation is said to be commutative if the order in which you apply it to two operands does not affect the result.

Addition is commutative because for any two numbers a and b, a + b = b + a. The order of adding the numbers doesn’t change the sum.
Example: 3 + 5 = 5 + 3 = 8
Example: 2 * 4 = 4 * 2 = 8

Subtraction and division, are not commutative:

Example: 7 - 3 ≠ 3 - 7 (7 - 3 = 4, but 3 - 7 = -4)
Example: 6 ÷ 2 ≠ 2 ÷ 6 (6 ÷ 2 = 3, but 2 ÷ 6 = 1/3)

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

Zero and Identity matrix

A

The zero matrix, denoted by 0, can be any size and is a matrix consisting of all zero
elements. Multiplication by a zero matrix results in a zero matrix.
The identity matrix, denoted by I, is a square matrix with ones down the main
diagonal
Multiplication by the identity matrix leaves the matrix unchanged

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

Diagonal matrix

A

A diagonal matrix has its only nonzero elements on the diagonal. diagonal matrices refer to square matrices, but they can also be rectangular

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

Band (or banded) matrix

A

Band matrix has nonzero elements only on diagonal bands. For example, a three-by-three band matrix with nonzero diagonals one above and one below a
nonzero main diagonal (called a tridiagonal matrix)

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

Upper or lower triangular matrix

A

An upper or lower triangular matrix is a square matrix that has zero elements below or
above the diagonal

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

Transpose of a matrix

A

The transpose of a matrix A, denoted by AT and spoken as A-transpose, switches the
rows and columns of A

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

Transpose of a matrix (details)

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

inner product (or dot product or scalar product) b

A

The inner product (or dot product or scalar product) between two vectors is obtained from
the matrix product of a row vector times a column vector. A row vector can be obtained
from a column vector by the transpose operator

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

Orthogonal vectors

A

If the inner product between two nonzero vectors is zero, we say that the vectors are
orthogonal. The norm of a vector is defined by

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

Outer product of matrix

A

For outter product of a matrxi every column is a multiple of the single vector u, and every row is a multiple
of the single vector vT
.

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

Inverse matrix

A

Square matrices may have inverses. When a matrix A has an inverse, we say it is invertible and denote its inverse by A−1

Conditions for Invertibility:

  1. The matrix must be square (i.e., it has the same number of rows and columns).
  2. The matrix must be non-singular, meaning its determinant is not zero det(A) != 0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Determinant of matrix

A

The determinant of a square matrix A is a scalar value that is calculated from the elements of the matrix.
For matrices larger than 2x2, the calculation involves summing the products of elements and their corresponding minors, often using a method known as Laplace expansion

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

Properties of Determinants

A

1.The determinant of a matrix is equal to the determinant of its transpose.
The determinant of a product of matrices is equal to the product of their determinants:
det(AB)=det(A)det(B).

  1. A matrix is invertible if and only if its determinant is non-zero.
  2. The determinant of an identity matrix is 1.
  3. If a matrix has a row or a column of zeros, its determinant is zero.
  4. Swapping two rows or columns of a matrix changes the sign of the determinant.
  5. Multiplying a row or column by a scalar multiplies the determinant by that scalar.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Inverse of matrix