-
Dot productMath/Linear algebra 2019. 10. 9. 00:20
1. Overview
In mathematics, the dot product or scalar product is an algebraic operation that takes two equal-length sequences of numbers (usually coordinate vectors) and returns a single number.
2. Description
2.1 Algebraic definition
Algebraically, the dot product is the sum of the products of the corresponding entries of the two sequences of numbers.
2.2 Algebraic Notation
α=a⋅b=⟨a,b⟩=aTb=n∑i=1aibi
2.3 Geometric Notation
α=cos(θab)‖
2.4 Properties
2.4.1 Distributive
a\cdot (b+c)=a\cdot b+a\cdot c
2.4.2 Not associative
a^{T}(b^{T}c)\neq (a^{T}b)^{T}c
2.4.3 Commutative
a\cdot b=b\cdot a
a^{T}\cdot b=(a^{T}\cdot b)^{T}=b^{T}\cdot a
3. References
'Math > Linear algebra' 카테고리의 다른 글
Field (0) 2019.10.10 Diagonalizable matrix (0) 2019.10.09 Cross-product (0) 2019.10.09 Invertible matrix and Pseudo-inverse (0) 2019.10.08 Gauss Elimination and Gauss-Jordan Elimination (0) 2019.10.07