Math

Tensor product(Outer product) VS Dot Product

Naranjito 2024. 9. 26. 17:41
  • Tensor product(Outer product)

 

The outer product (denoted by ) results in a matrix (or tensor) rather than a scalar.

Let’s say you have two vectors:

 

a = a 1 a 2 a 3 , b = b 1 b 2 b 3

a b = a 1 a 2 a 3 b 1 b 2 b 3 = a 1 b 1 a 1 b 2 a 1 b 3 a 2 b 1 a 2 b 2 a 2 b 3 a 3 b 1 a 3 b 2 a 3 b 3
  • Dot Product

 

It results in a scalar.

 

a b = a 1 b 1 + a 2 b 2 + a 3 b 3

'Math' 카테고리의 다른 글

eigenvalue, eigenvector  (0) 2024.10.15
Quaternion  (0) 2024.09.29
Matrix Multiplication  (0) 2024.09.26
Unit Vector VS Vector  (0) 2024.09.26
Vector inner dot product, Scalar projection, Vector projection, Lambertian reflection  (0) 2024.09.24