docs: update math/행렬

This commit is contained in:
Administrator 2023-02-11 18:25:56 +00:00 committed by wikijs
parent c1406a60f5
commit 9133c7f350
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
title: 행렬(Matrices)
description: 행렬
published: true
date: 2020-09-22T14:00:28.667Z
date: 2023-02-11T18:25:52.110Z
tags: 선형대수, 대수, mathmatics
editor: markdown
dateCreated: 2020-09-21T16:08:48.764Z
@ -36,7 +36,7 @@ $$A^{-1}A= I = AA^{-1}$$
$$A^{-1}=\frac{1}{ad-bc}\begin{bmatrix}
d&-b\\-c&a\end{bmatrix}$$
$ad-bc$가 0이라면 역행렬은 존재하지 않는다. 여기서 $ad-bc$는 행렬 $A$의 [행렬식(Determinant)](/행렬식)이다.
$ad-bc$가 0이라면 역행렬은 존재하지 않는다. 여기서 $ad-bc$는 행렬 $A$의 [행렬식(Determinant)](/math/행렬식)이다.
간단하게, [대각행렬](#대각행렬diagonal-matrix)의 역행렬은
$$\begin{bmatrix}
@ -53,6 +53,6 @@ d_1&0&\cdots &0 \\
## 가우스-조던 소거법(Gauss-Jordan Elimination)
$AX=I$인 $X$를 구하기 위해서 [기본 행 연산(Elementary operation)](/기본행연산)을 곱해서,
$AX=I$인 $X$를 구하기 위해서 [기본 행 연산(Elementary operation)](/math/기본행연산)을 곱해서,
Upper traiangle form이나 echelon form을 만들어서 구한다.