Determinants
determinant는 matrix의 항들로 구성된 scalar 값을 가지는 function이다.
1.
2.
3. determinant는 pivot의 곱으로 이루어져 있다. 이때 sign은 달라질 수 있다.
이 말인 즉슨, row elimination의 순서와 상관 없이 pivot의 곱은 항상 일정하다는 뜻이다.
중요한 점은 determinant가 matrix에 대한 많은 특징들을 explicit한 공식으로 가지고 있는 것이 아니라, 그 스스로 가지고 있는 특성들이라는 것이다.
Properties of the Determinants
determinant의 10개의 properties를 알아본다. 처음 3개의 properties를 가지고 나머지 properties는 유도될 수 있다.
1.
2. row exchange는 determinant의 sign을 바꾼다.
따라서 identity matrix의 row exchange를 통해서 만들어지는 permutation matrix들은, row exchange의 row exchange의 횟수에 따라서 1이냐 -1냐를 determine할 수 있다. 즉, even인 횟수로 row exchange를 했으면 1이고, odd인 횟수로 row exchange를 했으면 -1이다.

3a. 한 row에 곱해진 constant들은 밖으로 꺼낼 수 있다.

3b. 한 row에 더해진 constant들은 밖으로 꺼낼 수 있다.

단, 이는 row의 linearity에 대해서만 말하고 있는 것이지, determinant의 linearity에 대해서 말하고 있는 것은 아니다. 즉,
4. 같은 row가 2개 이상 있으면 determinant는 0이다.
이는 2에 의해서 유도될 수 있다. 같은 2개의 row를 exchange했을 때 sign은 바뀌어야 하지만, 동시에 같은 matrix이므로 determinant의 값이 동일해야 한다. sign이 바뀌어도 값이 동일할 수 있는 값은 0이 유일하므로, determinant는 0일 수 밖에 없다.
5. 임의의 row

6. 0으로 이루어진 row가 있으면 그 matrix의 determinant는 0이다.

7. upper triangular matrix

8. matrix
이를 7과 엮어서 생각해보면 재밌는 결과를 얻을 수 있다.
만약 임의의 matrix
Products of Pivots
이때 부호는 row exchange가 이루어진 횟수가 odd이냐 even이냐에 따라 결정된다.
9.
10.

References
- Gilbert Strang. 18.06 Linear Algebra. Spring 2010. Massachusetts Institute of Technology: MIT OpenCourseWare, https://ocw.mit.edu. License: Creative Commons BY-NC-SA.
- Strang, G. (2012). Linear algebra and its applications. Thomson Brooks/Cole.
Footnotes
'Mathematics > Linear Algebra' 카테고리의 다른 글
[Linear Algebra] Applications of Determinants (2) | 2022.09.28 |
---|---|
[Linear Algebra] Determinant Formulas and Cofactors (0) | 2022.09.28 |
[Linear Algebra] Linear Independence, Basis and Dimension (0) | 2022.07.20 |
[Linear Algebra] Solving Ax=b (0) | 2022.07.16 |
[Linear Algebra] Solving Ax=0 (0) | 2022.07.14 |