이번 포스트에서는 linear system을 표현하는 방법 중 하나인 matrix equation에 대해 알아보겠습니다.
1. Matrix Equation
1) matrix × vector
Matrix equation를 정의하기 위해서, matrix와 vector의 곱에 대해서 먼저 정의를 합니다.
If A is an m×n matrix, with columns a1,a2,...,an, and if x is in Rn, then the product of A and x, denoted by Ax, is the linear combination of the columns of A using the corresponding entries in x as weights
Ax=[a1a2...an]⎣⎢⎢⎢⎢⎡x1x2⋮xn⎦⎥⎥⎥⎥⎤=x1a1+x2a2+⋯+xnan
Ax is defined only if the number of columns of A equals the number of entries in x
matrix와 vector의 곱은 matrix의 column의 linear combination으로 표현되고, column에 해당하는 weight이 vector x 의 성분입니다.
따라서, Ax가 정의되기 위해서는 A의 column 개수와 x의 성분 개수가 같아야 합니다.
example 1)
[1025−1−3]⎣⎢⎡437⎦⎥⎤=4[10]+3[25]+7[−1−3]=[3−6]
example 2)
v1, v2, v3 are in Rm, and linear combination 3v1−5v2+7v3 can be represented as
3v1−5v2+7v3=[v1v2v3]⎣⎢⎡3−57⎦⎥⎤
이와 같이 matrix와 vector 곱이 matrix column의 linear combination으로 나타내는 것을 알면, linear system을 matrix와 vector의 곱으로 나타낼 수 있습니다.
2) Matrix Equation
Matrix equation은 다음과 같이 정의됩니다.
- Definition : Matrix Equation
A is m×n matrix, with columns a1,a2,...,an, and b is in Rm, and matrix equation is represented as
Ax=b
where x is in Rn
Ax을 A의 column의 linear combination으로 표현하면 위의 matrix equation은
x1a1+x2a2+⋯+xnan=b
로 표현됩니다. 따라서, 이 equation의 solution은 다음의 augmented matrix를 가지는 linear system의 solution과 동일합니다.
[a1a2⋯anb]
따라서, 하나의 linear system을
- augmented matrix
- vector equation
- matrix equation
세 가지 방법으로 표현할 수 있습니다.
다음 포스트에서는 linear independence에 대해서 알아보겠습니다. 질문이나 오류 있으면 댓글로 남겨주세요!