조범희 선생님의 선형대수학개론 강의를 듣고 공부하며 정리한 내용입니다.
정말 좋은 강의힙니다. 강추합니다. 링크
Linear Equations
a1x1+a2x2+a3x3+⋯+anxn=b
꼴의 Equation을 Linear Equation 이라고 한다
이때, a1,a2,a3,⋯,an 를 Coefficient 라고 한다.
a1,a2,a3,⋯,an,b 는 real or complex numbers 이다.
예컨대 4x1−5x2=x1x2 은 Linear Equation 이 아니다.
→ x1x2 로 인해
System of Linear Equation
def) A collections of one or more linear equations
(하나여도 상관없다)
Solution Set
The set of all possible solutions of the linear system
Two linear systems are called equivalent if they have the same solution set
A system of linear equations has either
- no solution (inconsistent), or
- exactly one solution (consistent), or
- infinitely many solutions (consistent)
no solution 이면 inconsistent
solution 이 존재 하면 consistent 임을 기억해두는게 좋다
(이 부분에서 System of Linear Equation 이 무조건 세 경우 중 하나라는 것은 두 직선의 위치관계와 함께 생각해서 이해했었는데 링크 의 영상을 보고 visualization 할 수 있었다. 덧붙이자면, unique one solution 이 되려면, 해를 구해야 하는 변수의 갯수만큼 유효한 linear equation 이 필요할 것이고, 그 equation 들이 오직 한 점에서 동시에 만나야 할 것이다.)
Matrix Notation
x1−2x2+x3=02x2−8x3=8−4x1+5x2+9x3=−9
이와 같은 꼴의 Linear Equation을 Matrix로 바꾸어 표현해보자.
이때 두 방식으로 표현할 수 있는데
⎣⎢⎡10−4−2251−89⎦⎥⎤
위의 방식을 coefficient matrix (3x3)
⎣⎢⎡10−4−2251−8908−9⎦⎥⎤
위의 방식을 augmented matrix (3x4)
라고 한다.
Example of solving a system of Linear Equation
ex1. Solve the follwing system of linear equations
x1−2x2+x3=02x2−8x3=8−4x1+5x2+9x3=−9
위와 같은 Linear Equations을 풀어보자
Matrix로 나타내면 ⎣⎢⎡10−4−2251−8908−9⎦⎥⎤ 와 같다
먼저 replacement를 한다.
(어떤 Equation 에서 특정 variable을 소거하고 원래의 Equation과 교체하는 것을 replacement라고 한다)
eq(1)4∗(x1−2x2+x3=0)eq(3)+(−4x1+5x2+9x3=−9)eq(3a)−3x2+13x3=−9
그 결과로
eq(1)x1−2x2+x3=0eq(2)2x2−8x3=8eq(3a)−3x2+13x3=−9
eq(3a)가 생기고 matrix로는
⎣⎢⎡100−22−31−81308−9⎦⎥⎤ 라고 나타낼 수 있다
이어서 scaling 을 해준다.
(상수를 곱해 소거에 사용되기 쉬운 equation 으로 바꾸는 것)
eq(2)21∗(2x2−8x3=8)eq(2a)x2−4x3=4
그 결과로 eq(2a)가 생긴다.
eq(1)x1−2x2+x3=0eq(2a)x2−4x3=4eq(3a)−3x2+13x3=−9 ⎣⎢⎡100−21−31−41304−9⎦⎥⎤
이후 과정은 식만 남겨두고 설명을 생략한다.
eq(2a)3∗(x2−4x3=4)eq(3a)+(−3x2+13x3=−9)eq(3b)x3=3
eq(1)x1−2x2+x3=0eq(2a)x2−4x3=4eq(3b)x3=3 ⎣⎢⎡100−2101−41043⎦⎥⎤
(중략)
eq(1a)x1−2x2=−3eq(2b)x2=16eq(3b)x3=3 ⎣⎢⎡100−210001−3163⎦⎥⎤
eq(1)x1−2x2+x3=0eq(2a)x2−4x3=4eq(3b)x3=3 ⎣⎢⎡10001000129163⎦⎥⎤
Elementary Row Operations
예제를 풀 때 사용된
replacement
interchange
scaling
을 Elementary Row Operations 이라고 한다.
Two matrices are row equivalent if there is a sequence of elementary row operations that transforms one matrix into the other
If the augmented matrices of two linear systems are row equivalent, then the two systems have the same solution set.