Matrix Notation

* matrix notation은 위와 같다.
Theorem 1.
Let A, B and C be matrices of the same size, and let r and s be scalars1) A + B = B + A
2) (A+B) + C = A + (B+C)
3) A + 0 = A
4) r(A+B)=rA + rB
5) (r+s)A = rA + sA
6) r(sA) = (rs)A
* 각각의 Matrix는 column vector들로 이뤄져있기 때문에 vector의 성질을 그대로 만족하게 된다.
Matrix Multiplication
* m x n matrix A와 n x p matrix B의 곱 AB는 다음과 같이 나타낼 수 있다.
AB=A[b1b2...bp]
=[Ab1Ab2...Abp]
(AB)ij=ai1b1j+ai2b2j+...ainbnj
* 결과 matrix의 i번째 row의 구성만 알고 싶다면 다음과 같이 계산한다.
rowi(AB)=rowi(A)∗B
Theorem 2.
Let A be m x n matrix, and let B and C have sizes for which the indicated sums and products are defined.
1) A(BC)=AB(C)
2) A(B+C)=AB+AC
3) (B+C)A=BA+CA
4) r(AB)=(rA)B=A(rB)
5) ImA=A=AIn
주의사항
1) 특별한 경우를 제외하고는 보통 AB≠BA이다.
AB=[513−2][2043]=[143−2−6]
BA=[2043][513−2]=[10229−2]
2) 만약 AB=AC 가 성립한다고 하더라도, B와 C는 같지 않을 수 있다.
AB=[2−3−46][8455]=[1−7−214]
AC=[2−3−46][5−231]=[1−7−214]
3) 만약 AB=0일 때 꼭 A, B 둘 중 하나가 0행렬이라는 가정은 맞지 않다.
AB=[3−6−12][2613]=[0000]
The transpose of a Matrix

* transpose는 matrix의 row와 column을 바꾸는 것을 뜻한다. matrix A가 있을 때 표기는 AT와 같이 한다.
Theorem 3.
Let A and B denote matrices whose sizes are appropriate for the following sums and products
1) (AT)T=A
2) (A+B)T=AT+BT
3) For any scalar r, (rA)T=rAT
4) (AB)^T = B^T A^T
'수학 > Linear Algebra and its application' 카테고리의 다른 글
2.3 Characterization of Invertible Matrix (0) | 2021.12.24 |
---|---|
2.2 The Inverse of a Matrix (0) | 2021.12.22 |
1.9 The Matrix of a Linear Transformation (0) | 2021.12.20 |
1.8 Introduction To Linear Transformations (0) | 2021.12.20 |
1.7 Linear Independence (0) | 2021.12.20 |