이번 포스트에서는 invertible matrix가 가지는 성질을 정리한 invertible matrix theorem에 대해 알아보겠습니다.
1) Invertible Matrix Theorem
Let A be a square n×n matrix. Then the following statements are equivalent. That is, for given A, the statements are either all true or all false
a. A is an invertible matrix
b. A is row equivalent to the $n \times n $ identity matrix
c. A has n pivot positions
d. The equation Ax=0 has only the trivial solution
e. The columns of A form a linearly independent set
f. The columns of A span Rn
g. There is an n×n matrix C such taht CA=I
h. There is an n×n matrix D such that AD=I
i. The equation Ax=0 has at least one solution for each b in Rn
j. AT is an invertible matrix
위의 10가지 명제는 동치입니다. a.번을 보면 A가 invertible matrix이므로, invertible matrix A는 다음 9가지의 성질을 가집니다. invertible matrix theorem은 앞으로 새로운 개념을 배울 때마다 추가될 예정입니다.
(1) a ⇒ g ⇒ d ⇒ c ⇒ b ⇒ a
invertible matrix의 정의에 의해서 CA=I를 만족하는 C가 존재합니다. (C=A−1가 됩니다.)
Ax=0에서 양변의 왼쪽에 C를 곱해주면
CAx=Ix=x=C0=0
가 되어 trivial solution만을 가집니다.
Ax=0가 trivial solution을 가진다는 것은, 이 matrix equation과 동일한 solution을 가지는 linear system의 augmented matrix
[A0]
를 풀었을 때, free variable이 존재하지 않습니다. 따라서 A의 모든 column이 pivot column이 되고, pivot position 개수는 n개입니다.
n×n matrix A의 pivot column 개수가 n개이므로, A의 reduced echelon form의 leading entry 개수가 n개입니다. 따라서
를 만족합니다.
저번 포스트의 Theorem에 의해 성립합니다.
(2) h ⇒ i ⇒ c ⇒ b ⇒ a ⇒ h
AD=I이므로, Ax=b는 다음과 같이 표현할 수 있습니다.
Ax=Ib=ADb
따라서 x=Db은 위 equation의 solution이 됩니다. 이는 모든 b∈Rn에 대해 성립합니다.
Ax=b가 모든 b∈Rn에 대해 solution이 존재하려면, 다음의 matrix equation과 동일한 solution을 가지는 linear system의 augmented matrix
[Ab]
가 모든 b∈Rn에 대해서 solution이 존재해야 합니다. 즉, 임의의 b에 대해서 solution이 존재해야 하기 때문에, A의 reduced echelon form에 zero row가 존재하면 안됩니다. 따라서 A는 n개의 pivot position을 가집니다.
- c ⇒ b ⇒ a
(1)에서 증명
Invertible matrix 정의에 의해 AD=I를 만족하는 D가 존재합니다. (D=A−1)
(3) d ⇔ e
Linear independence 정의에 의해 d와 e는 동치입니다.(d가 e의 정의입니다.)
(4) i ⇔ f
Ax=b 에서 Ax는
Ax=x1a1+...+xnan
A의 column들의 linear combination으로 표현됩니다.
모든 b∈Rn에 대해서 Ax=b 의 solution이 존재한다는 것은 모든 b가 A의 columns의 linear combination으로 표현되는 것을 뜻합니다. 즉
b∈Span{a1,a2,...,an}
을 만족합니다. 따라서
Rn⊂Span{a1,a2,...,an}
을 만족합니다. 또한, a1,a2,...,an은 모두 Rn의 원소이므로, 이들의 linear combination 역시 Rn의 원소입니다.
Rn⊃Span{a1,a2,...,an}
이므로
Rn=Span{a1,a2,...,an}
을 만족합니다.
(5) a ⇔ j
inverse의 성질 중, A가 invertible하면 (AT)−1=(A−1)T임을 만족합니다. 즉 AT 또한 invertible합니다.
지금까지 Invertible Matrix Theorem에 대해서 알아보았습니다. 다음 포스트에서는 Partitioned matrix에 대해 알아보겠습니다. 질문이나 오류 있으면 댓글 남겨주세요! 감사합니다!