Matrix multiplication vs dot product

jabers
Messages
15
Reaction score
0
What is the difference between matrix multiplication and the dot product of two matrices? Is there a difference?

If,

A =<br /> \begin{pmatrix}<br /> a &amp; b \\<br /> c &amp; d<br /> \end{pmatrix}

and

B =<br /> \begin{pmatrix}<br /> e &amp; f \\<br /> g &amp; h<br /> \end{pmatrix}

then does
<br /> {\mathbf{A} \cdot \mathbf{B}} =<br /> \begin{pmatrix}<br /> ae &amp; bf \\<br /> cg &amp; dh<br /> \end{pmatrix}

and

AB = <br /> \begin{pmatrix}<br /> ae + bg &amp; af + bh \\<br /> ce + dg &amp; cf + dh<br /> \end{pmatrix}

? Is this correct? Any help would be appreciated.
 
Physics news on Phys.org
Don't confuse dot product of matrix with vectors. The second product is correct.
 
so,

{\mathbf{A} \cdot \mathbf{B}} = AB = <br /> \begin{pmatrix}<br /> ae + bg &amp; af + bh \\<br /> ce + dg &amp; cf + dh<br /> \end{pmatrix}

With matrices the dot product means that you need to multiply the matrices? Correct?
 
Usually the "dot product" of two matrices is not defined. I think a "dot product" should output a real (or complex) number. So one definition of A\bulletB is ae + bf + cg + df. This is thinking of A, B as elements of R^4. If we want our dot product to be a bi-linear map into R this is how we need to define it (up to multiplication by a constant).
 
You should view AB as a collection of dot products ie.
ab11 (top left of AB) can be described as the dot product of

\begin{pmatrix}
a & b
\end{pmatrix}dot\begin{pmatrix}
e \\
g
\end{pmatrix}

and so on for the rest of the positions.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...

Similar threads

Replies
5
Views
2K
Replies
5
Views
2K
Replies
13
Views
10K
Replies
10
Views
2K
Replies
9
Views
2K
Replies
12
Views
3K
Replies
4
Views
5K
Back
Top