Dot product as matrix products?

tgt
Messages
519
Reaction score
2
Why not make dot(u,v)=transpose(u)v rather than transpose(v)u?
 
Mathematics news on Phys.org
What's the difference?
 
At least difference emerges when transpose is replaced with Hermitian conjugate, when complex vectors are used. Physicist use the convention

<br /> (u|v) = u^{\dagger} v<br />

and IMO it is lot better than the mathematicians' convention

<br /> (u|v) = v^{\dagger} u<br />

When something is done in a dumb way, the reason is usually "for historical reasons". I guess that's the answer to the OP question this time too.
 
Hurkyl said:
What's the difference?
One way generates a scalar and the other way generates an NxN matrix. Which is which depends on whether the vector is a 1xN row vector or a Nx1 column vector.
 
D H said:
Hurkyl said:
What's the difference?
One way generates a scalar and the other way generates an NxN matrix. Which is which depends on whether the vector is a 1xN row vector or a Nx1 column vector.

This response is not logical!

If we assume u and v to be Nx1 vectors, then both u^Tv and v^Tu give a single component 1x1 matrix.

tgt did not ask about why to use Nx1 or 1xN matrices, so it is better not to start switching between them now.

The truth is that there are two different conventions for complex inner products, and they are

<br /> (u|v) = \sum_{k=1}^N u^*_k v_k<br />

and

<br /> (u|v) = \sum_{k=1}^N u_k v^*_k<br />

so I thought it would be natural to guess that the original question was related to this issue.
 
jostpuur said:
At least difference emerges when transpose is replaced with Hermitian conjugate, when complex vectors are used.
I see now.
 
D H said:
One way generates a scalar and the other way generates an NxN matrix. Which is which depends on whether the vector is a 1xN row vector or a Nx1 column vector.
No, you have misread. If u and v are column vectors (most common convention), then uTv is a scalar and uvT is a matrix.

But the question was about the difference between uTv and vTu, both of which are scalars. And the answer is that if the vectors are over the real numbers, there is no difference and if the vectors are over the complex numbers, one is the complex conjugate of the other. In the latter case, which we use as inner product is a matter of convention.
 
Yes, I misread the OP as uTv versus uvT, as opposed to uTv versus vTu.
 

Similar threads

Replies
7
Views
2K
Replies
2
Views
1K
Replies
3
Views
2K
Replies
4
Views
3K
Replies
4
Views
4K
Replies
12
Views
2K
Replies
4
Views
3K
Back
Top