본 글은 주재걸교수님의 인공지능을 위한 선형대수 강의를 듣고 정리한 내용입니다.
- Scalar : a single number s ∈R
- Vector : an ordered list of numbers (unordered list : Set)
- Matrix : a tow-dimensional array of numbers
- Row Vector : a horizontal vector
- Column Vector : a vertical vector
- Square Matrix(#rows = #columns)
- Rectangular Matrix(#rows ≠ #columns)
- Transpose of Matrix
- Element-wise addition(Matrix should have the same size)
- Scalar multipe of Matrix
- Matrix-matrix multiplication
- AB ≠ BA : Matrix multiplication is NOT commutative(교환법칙 성립 X)sssssss
- A(B+C) = AB+AC : Distributive
- A(BC) = (AB)C : Associative
- (AB)T = BTAT : Property of tranpose
- (AB)-1 = B-1A-1
출처: https://www.edwith.org/ai251
참고 자료
https://www.mathsisfun.com/algebra/matrix-multiplying.html
https://ko.wikipedia.org/wiki/%ED%96%89%EB%A0%AC_%EA%B3%B1%EC%85%88
https://hi-datalab.tistory.com/6
'Study > 선형대수학' 카테고리의 다른 글
2.5 선형변환 (0) | 2021.12.29 |
---|---|
2-4. 부분공간의 기저와 차원 (0) | 2021.12.29 |
2-3. 선형독립과 선형종속 (0) | 2021.12.28 |
2-2. 선형결합 (0) | 2021.12.28 |
2-1. 선형방정식과 선형시스템 (0) | 2021.12.27 |
댓글