square matrix 의 trace 는 주어진 정사각 행렬의 대각 원소들의 합을 의미한다.
Properties
trace 는 다음 성질을 가진다.
- , for
- , for
- , for
마지막 성질(cyclic property) 을 두 벡터의 곱에 적용하면, outer product 의 trace 가 inner product 와 같아진다.
여기서 이다.
1 min read
square matrix A∈Rn×n 의 trace 는 주어진 정사각 행렬의 대각 원소들의 합을 의미한다.
tr(A):=i=1∑naiitrace 는 다음 성질을 가진다.
마지막 성질(cyclic property) 을 두 벡터의 곱에 적용하면, outer product 의 trace 가 inner product 와 같아진다.
tr(xy⊤)=tr(y⊤x)=y⊤x∈R여기서 x,y∈Rn 이다.
Q 는 item embedding matrix, tr(·) 은 matrix 의 trace, LD 는 D 의 Laplacian matrix 를 의미한다. Dᵢ,j=1: item i 그리고 j 가 동일한 집합에 포함됨을 의미 (popular items or long-tail item...
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}.
Properties \operatorname{det}(AB)=\operatorname{det}(A)\operatorname{det}(B) References jjycjnmath.tistory.com/397 .
The vectorization of a matrix is a linear transformation which converts the matrix into a column vector.
matrix \boldsymbol{A} 의 eigenvector 는 \boldsymbol{A}\boldsymbol{v}=\lambda\boldsymbol{v} 를 만족하는 vector \boldsymbol{v} 를 의미한다.
사이즈가 각각 m \times 1 그리고 n \times 1 인 두 벡터가 있다고 가정하자.
\boldsymbol{A}=\boldsymbol{A}^{\top} 를 만족하는 matrix \boldsymbol{A} 예시 \left[\begin{array}{lll}3 & 1 & 7 \\ 1 & 2 & 9 \\ 7 & 9 & 4\end{array}\right] 특징...
Kronecker product, sometimes denoted by \otimes, is an operation on two matrices of arbitrary size resulting in a block matrix.
벡터 u 와 v 가 존재한다고 가정할때, 내적 u\cdot v 은 v 에서 u 로 내린 projection p 의 길이와 u 의 크기 ||u|| 값을 곱한것과 같다.
벡터 집합의 span 이란, original vectors 들의 선형 결합 으로 인해 얻어지는 모든 points 들의 집합 (vector space) 을 의미한다.
어떤 벡터 공간 이 주어졌을 때, 해당 공간에 대한 모든 basis 는 vector 들과 동일 수를 만족해야 한다. 이 수는 그 공간에 대한 차원 (dimension) 이라고 부른다. Note matrix 은 rank 가 존재하지만 차원 개념은 없다.