이번 포스트에서는 matrix에서 정의되는 특별한 연산인 transpose와 trace에 대해 알아보겠습니다.
Definition : Transpose of matrix
Given an matrix , the transpose of is the matrix whose columns are formed from the corresponding rows of
notation :
Transpose를 하게 되면, 기존 matrix의 row는 column으로 바뀌게 됩니다. 이는 기존 matrix의 column이 row로 바뀌게 된다는 것과 같은 의미입니다. 즉, 의 th row은 의 th column, 의 th column은 의 th row가 됩니다.
example
일 때,
입니다.
Properties of transpose of matrix
transpose는 다음과 같은 성질을 가지고 있습니다.
Transpose와 관련된 특별한 matrix인 symmetric matrix에 대해 알아보겠습니다.
Definition : Symmetric matrix
A square matrix is called symmetric if
즉, transpose를 취한 matrix와 취하기 전의 matrix와 같을 때, symmetric matrix라고 합니다. 또한 transpose를 취한 matrix와 취하기 전 matrix가 같아야 하기 때문에, symmetric matrix는 square matrix에서만 정의됩니다.
example
이 때, 이므로 symmetric matrix입니다.
Properties of symmetric matrix
이러한 symmetric matrix는 특별한 성질을 가집니다.
are symmetric matrices with the same size ans is any scalar, than
다음 성질은 symmetric matrix의 정의를 이용하여 쉽게 증명할 수 있습니다.
Definition : Trace of matrix
If is a square matrix, then the trace of , denoted by , is defined to be the sum of the entries on the main diagonal of
trace 역시 square matrix에서 정의하고, square matrix의 main diagonal entries의 합으로 정의합니다.
example
일 때
입니다.
Properties of Trace
Trace는 다음과 같은 성질을 가지고 있습니다.
are square matrices with same size, and is scalar, is a vector in , then
지금까지 matrix에서의 특별한 연산인 transpose와 trace에 대해 알아보았습니다. 다음 포스트에서는 invertible matrix와 inverse에 대해 알아보겠습니다. 질문이나 오류 있으면 댓글 남겨주세요! 감사합니다!