Zzong's Notes

Home

❯

linear_algebra

❯

triangular matrix

triangular matrix

2026년 8월 29일1 min read

L=​ℓ1,1​ℓ2,1​ℓ3,1​⋮ℓn,1​​ℓ2,2​ℓ3,2​⋮ℓn,2​​⋱⋱…​⋱ℓn,n−1​​0ℓn,n​​​

함께 보면 좋은 글

diagonal matrix

Formally, a matrix D is diagonal if and only if D {i,j}=0 for all i\neq j.

determinant

Properties \operatorname{det}(AB)=\operatorname{det}(A)\operatorname{det}(B) References jjycjnmath.tistory.com/397 .

symmetric matrix

\boldsymbol{A}=\boldsymbol{A}^{\top} 를 만족하는 matrix \boldsymbol{A} 예시 \left[\begin{array}{lll}3 & 1 & 7 \\ 1 & 2 & 9 \\ 7 & 9 & 4\end{array}\right] 특징...

Linear Algebra

References MIT OPEN SOURCEWARE .

transpose

For \boldsymbol{A} \in \mathbb{R}^{m \times n} the matrix \boldsymbol{B} \in \mathbb{R}^{n \times m} with b {i j}=a {j i} is called the transpose of \boldsymbol{A}.

transformation matrix

vector space V, W 에 따른 각각의 ordered bases B=\left(\boldsymbol{b} {1}, \ldots, \boldsymbol{b} {n}\right) 그리고 C=\left(\boldsymbol{c} {1}, \ldots, \boldsymbol{c} {m}\right) 가 있다고...

adjacency matrix

adjacency matrix 는 정방 행렬로, 유한한 그래프를 표현하기 위한 행렬이다. 이 행렬의 원소는 두 vertices 가 그래프 상에서 서로 인접 (adjacent) 한지 여부를 나타낸다.

trace

square matrix \boldsymbol{A}\in\mathbb{R}^{n\times n} 의 trace 는 주어진 정사각 행렬의 대각 원소들의 합을 의미한다.

basic variable

정의 row-echelon form matrix 에서 pivot 에 해당되는 variable 을 basic variable 이라하고, 나머지를 free variable 이라 한다.

singular value

singular values of matrix A 는 A^{\top} A, A A^{\top} 에서 구할 수 있는 eigenvalue 들의 square root 값을 의미한다.