Understanding Vector Multiplication: Examples and Differences Explained

Click For Summary
SUMMARY

This discussion clarifies the differences between two types of vector multiplication: the dot product and matrix multiplication. The first example, where the vectors [5 2 1] and [3 -4 7] are multiplied, results in a single numerical answer of 14, representing the dot product of a 1x3 matrix and a 3x1 matrix. In contrast, the second example, where the vectors [2 1] and [-1 3] are multiplied, yields a 2x2 matrix, demonstrating matrix multiplication of a 2x1 matrix and a 1x2 matrix. The key takeaway is that vector multiplication should be referred to as matrix multiplication, as the output is always a matrix.

PREREQUISITES
  • Understanding of matrix dimensions (e.g., 1x3, 3x1, 2x1, 1x2)
  • Knowledge of the dot product and its calculation
  • Familiarity with matrix multiplication rules
  • Basic linear algebra concepts
NEXT STEPS
  • Study the properties of the dot product in linear algebra
  • Learn about matrix multiplication techniques and examples
  • Explore the implications of matrix dimensions on multiplication results
  • Investigate applications of matrix multiplication in computer graphics and data science
USEFUL FOR

Students and educators in mathematics, particularly those studying linear algebra, as well as professionals in fields such as computer science and engineering who require a solid understanding of matrix operations.

60051
Messages
16
Reaction score
0
Not sure if vectors are pre or post calculus


Homework Statement



So we had a few examples of vector multiplication in class and I don't understand something.

The following vectors were multiplied:

[5 2 1] by

3
-4
7

...and the answer was 14 [(5*3) + 2*(-4) + (1*7)].



But in another example,

2
1

was multiplied by [-1 3]

...and the answer was

-2...6
-1...3



So why was the answer in the first example a single numerical answer while the answer to the second one was in matrix form?
 
Physics news on Phys.org
It makes no difference, perhaps your prof was trying to get the point across that vectors can be represented in matrix form as well?

EDIT: After looking over the question and putting a little more thought into it,

The first part it looks as though you're preforming the dot product between two vectors.

The second part looks like the matrix multiplication of a row vector and a column vector to generate a 2x2 matrix.
 
Last edited:
They are both still examples of matrix multiplication. The first example is a 1x3 matrix multiplied by a 3x1 matrix, and the result is then a 1x1 matrix. The second example is a 2x1 matrix multiplied by a 1x2 matrix, and the result is a 2x2 matrix.
 
With "matrix multiplication". Think of matrix multiplication of a "dot product" of row and column. To find the number in "column i, row j" of the result, take the dot product of "row j" in the first matrix with "column i" in the second.

Specifically,
\begin{bmatrix}5 &amp; 2 &amp; 1\end{bmatrix}\begin{bmatrix}2 \\ -4 \\ 7\end{bmatrix}= 14[/itex]<br /> The dot product of the single row in the first matrix with the single column in the second. A &quot;row matrix&quot; times a column matrix is a number. <br /> <br /> \begin{bmatrix}2 \\ 1\end{bmatrix}\begin{bmatrix} -1 &amp;amp; 3\end{bmatrix}= \begin{bmatrix}-2 &amp;amp; 6 \\ -1 &amp;amp; 3\end{bmatrix}[/itex].&lt;br /&gt; &amp;quot;Row 1 is just the number 2 and &amp;quot;column 1&amp;quot; is just the number -1. Their product is -2. &amp;quot;Column 2&amp;quot; is just the number 3 so the product of &amp;quot;row 1 and column 2&amp;quot; is (2)(3)= 6. &amp;quot;Row 2&amp;quot; is just 1. The product of &amp;quot;row 2 and column 1&amp;quot; is (1)(-1)= -1. The product of &amp;quot;row 2&amp;quot; and &amp;quot;column 2&amp;quot; is (1)(3).
 
Hi 60051! :smile:
60051 said:
So we had a few examples of vector multiplication …

So why was the answer in the first example a single numerical answer while the answer to the second one was in matrix form?
pbandjay said:
They are both still examples of matrix multiplication. The first example is a 1x3 matrix multiplied by a 3x1 matrix, and the result is then a 1x1 matrix. The second example is a 2x1 matrix multiplied by a 1x2 matrix, and the result is a 2x2 matrix.

As pbandjay :smile: says, they are matrix multiplication.

Vector multiplication doesn't really exist.

For multiplication, you need everything to be in a multiplication space (my terminology) … both the input and the output.

The product of two matrices is always another matrix (possibly a different size and shape).

The dot product of two vectors isn't a vector, so the dot product isn't multiplication unless you regard everything (both vectors and scalars) as matrices.

So think of this as matrix multiplication, and don't use the phrase "vector multiplication". :wink:
 
You are correct.
 
BigFairy said:
You are correct.

oooh … do i get three wishes? :-p

are you a fairy operator? do you do transformations? :smile:
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 14 ·
Replies
14
Views
3K
Replies
11
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K
Replies
3
Views
2K
  • · Replies 11 ·
Replies
11
Views
5K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 16 ·
Replies
16
Views
3K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 21 ·
Replies
21
Views
3K