행렬(2)
-
Matrix Operation 1 (행렬 연산)
목차 Matrix Operation(행렬 연산) equality summation scalar multiplication matrix multiplication operation in vector geometric interpretation of matrix multiplication 이번에는 행렬의 "기본적인" 연산들에 대해 알아보겠습니다. 참고로, 이번 포스팅에서 다루는 내용 말고도 행렬에 대해서는 훨씬 더 많은 연산이 있지만, 그 연산들은 이후의 포스팅에서 다루도록 하겠습니다. Matrix Operation(행렬 연산) - equality(상등) 두 행렬이 상등이라는 의미는 두 행렬이 실제로는 두 개가 아닌 하나라는 즉, 두 행렬이 일치한다는 의미입니다. 예를 들어, 어떤 두 m by n (m \(..
2022.10.01 -
Matrix Notation (행렬 표기법)
목차 Matrix Notation matrix coefficient matrix augmented matrix matrix notation을 사용하는 이유 이전 포스팅에서는 linear equation과 linear equation이 연립된 형태인 linear system에 대해 다뤘습니다. 이번에는 linear system을 matrix notation으로 표기하는 방법에 대해 다뤄보고자 합니다. Matrix Notation (행렬 표기법) - matrix matrix notation에 들어가기에 앞서, matrix(행렬)에 대해 간단히 설명하도록 하겠습니다. matrix란 \begin{bmatrix} a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\ \vdots & \vdots ..
2022.09.26