Unit 2 - Inverting Matrices Flashcards

1
Q

Dyadic product

A

A dyadic product of two vectors is a third vector product next to dot product and cross product. The dyadic product is a square matrix that represents a tensor with respect to the same system of axes as to which the components of the vectors are defined that constitute the dyadic product

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

When can be matrix A and B multiplied?

A

A type m x p
B type p x n
When the number of columns of the first matrix is the same as the number of rows od the second matrix.
We obtain an m x n matrix.

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

Diagonal matrices scaling

A
  • If A is multiplied from the left by a diagonal matrix D, the rows are scaled with the elements of the diagonal.
  • If A is multiplied from the right by a diagonal matrix D, the columns are scaled with the elements of the diagonal.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Matrix product transposed (AxB)^T

A

(A*B)^T = B^T * A^T

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

Calculation rules for transposition (5)

A

(A^T)^T = A
(A+B)^T = A^T + B^T
A)^T = λA^T
(A*B)^T = B^T * A^T
E^T = E

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

Identity matrix E

A

A square neutral matrix whose product with any matrix yelds the same matrix again.

Is a diagonal matrix whose main diagonal elements are 1.

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

Matrix multiplication law: Associative law

A

(AB)C=A(BC), if the size of the matrices permit it.

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

Matrix multiplication law: Homogenity

A

λ(AB) = (λA)B = A(λ*B)

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

Matrix multiplication law: Distributive law

A

Left hand: A(B+C)=AB+AC
Right hand (A+B)
C=AC+BC

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

Matrix multiplication law: Square identity

A

E*A=A

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

Matrix multiplication law: Non-Square identity

A

A*E=A

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

Matrix multiplication law: Zero matric product

A

0A=0
A
0=0

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

Matrix multiplication law: Scalar multiplication

A

λA=(λE)*A

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

How is defined a power of a square matrix?

A

It’s defined like the power of a normal number, as repeated multiplication.

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

Power properties

A

A^0=E, A^1=A, A^2=AA
A^s+t = A^s * A^t
A^s
t = (A^s)^t

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

Generally is matrix multiplication commutative?

A

NO