Differences between revisions 3 and 4
Revision 3 as of 2011-08-03 11:01:09
Size: 846
Editor: localhost
Comment: converted to 1.6 markup
Revision 4 as of 2011-08-21 16:46:21
Size: 850
Editor: 211
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
행렬식(Determinant) in [Matrix] 행렬식(Determinant) in [[Matrix]]
Line 39: Line 39:
기본적으로 n차 정방행렬의 행렬식([Determinant])은 내포된 n-1차 정방행렬의 행렬식에 의해 귀납적으로 계산될 수 있다. (recursion) 기본적으로 n차 정방행렬의 행렬식([[Determinant]])은 내포된 n-1차 정방행렬의 행렬식에 의해 귀납적으로 계산될 수 있다. (recursion)

행렬식(Determinant) in Matrix

2*2 matrix

\math{
\begin{displaymath} X = \left( \begin{array}{ccc} a & b \\ c & d \end{array} \right) \end{displaymath}
}

일때,

\math{
| X | = ad - bc
}

3*3 matrix

\math{
\begin{displaymath} X = \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right) \end{displaymath}
}

일때,

\math{
| X | = ( cdh + aei + bfg )  - ( bdi + ceg + afh )
}

n * n matrix

n*n 정방행렬(square matrix of order n) 의 경우는 LaplaceExpansion (= CofactorExpansion)에 의해 계산되어질 수 있다.

기본적으로 n차 정방행렬의 행렬식(Determinant)은 내포된 n-1차 정방행렬의 행렬식에 의해 귀납적으로 계산될 수 있다. (recursion)

Determinant (last edited 2011-08-21 16:46:21 by 211)

web biohackers.net