Interpretation of matrix multiplication?

Click For Summary
SUMMARY

Matrix multiplication serves as a linear transformation between vector spaces, specifically when considering matrices as mappings in fixed bases. For example, multiplying two 2x2 matrices, such as [1, 2; 3, 4] and [1, 1; 0, 1], can be interpreted as transforming the standard basis vectors e_1 and e_2 in ℝ². The resulting matrix encapsulates the images of these basis vectors under the respective linear maps, demonstrating that matrix multiplication is not merely abstract formalism but has tangible geometric interpretations.

PREREQUISITES
  • Understanding of linear transformations
  • Familiarity with vector spaces and basis vectors
  • Knowledge of matrix operations and multiplication
  • Basic concepts of dot products in higher dimensions
NEXT STEPS
  • Explore linear transformations in depth using tools like MATLAB or Python's NumPy library
  • Study the geometric interpretations of matrix multiplication in ℝ² and ℝ³
  • Learn about the composition of linear maps and their matrix representations
  • Investigate the implications of changing bases in vector spaces and how it affects matrix representation
USEFUL FOR

Mathematicians, computer scientists, and engineers interested in linear algebra, particularly those focusing on applications of matrix operations in transformations and geometric interpretations.

pivoxa15
Messages
2,250
Reaction score
1
Matrix multiplication is clearly defined but is there a tangible or physical interpretation for it? Or is it just abstract formalism?

I am thinking about each column of the matrix as vectors so matrix multiplication with two 2by2 matrices is about multiplying 4 vectors in a certain way. The result is a 2by2 matrix with all four vectors tangled up with each other. But does the two resultant vectors in this matrix have a meaning with respect to the original vectors if we gave the original vectors some meaning in the first place?

I do see how an nbyn matrix multiplied with a nby1 matrix is. It is like dot product on a larger scale with one vector dotted with a set of vectors.

So the question is about multidimentional matrix multiplication.
 
Physics news on Phys.org
pivoxa15 said:
Matrix multiplication is clearly defined but is there a tangible or physical interpretation for it? Or is it just abstract formalism?

I am thinking about each column of the matrix as vectors so matrix multiplication with two 2by2 matrices is about multiplying 4 vectors in a certain way. The result is a 2by2 matrix with all four vectors tangled up with each other. But does the two resultant vectors in this matrix have a meaning with respect to the original vectors if we gave the original vectors some meaning in the first place?

I do see how an nbyn matrix multiplied with a nby1 matrix is. It is like dot product on a larger scale with one vector dotted with a set of vectors.

So the question is about multidimentional matrix multiplication.

A good interpretation is this: You can view your matrix as the matrix of a linear transformation (mapping) between two vector spaces (of finite dimension) in fixed basis for the two vector spaces. In the columns you express the image (under your linear map) of the basis vectors in terms of the new basis vectors.

Let's look at an example: Let's look at \left[ \begin{array}{cc} 1 & 2 \\ 3 & 4 \end{array} \right] and \left[ \begin{array}{cc} 1 & 1 \\ 0 & 1 \end{array} \right]. Interpretation: Look at it as a two linear maps F,G: \mathbb{R}^2\rightarrow\mathbb{R}^2 and for simplicity fix the standard basis: e_1=\left( \begin{array}{c} 1\\0\end{array}\right), e_2=\left( \begin{array}{c} 0\\1\end{array}\right). It is important now to keep in mind that in both our domain and our target space (both \mathbb{R}^2) we have chosen the same basis, which is of course a special case and must not always be like that.
We then interpret the column vectors as the images of e_1 and e_2 under F or G. Under F:e_1\rightarrow \left( \begin{array}{c} 1\\3\end{array}\right), e_2\rightarrow \left(\begin{array}{c} 2\\4\end{array}\right) again in the standard basis (which makes it a lot simpler). If you let A(F)=[a_{ij}] be the matrix of F, then it follows that F(e_1)=a_{11}\cdot e_1+a_{21}\cdot e_2, F(e_1)=a_{12}\cdot e_1+a_{22}\cdot e_2, which is exactly the multiplication of A(F) with e_1.
Think about this a little: What happens if you take just some vector in \mathbb{R}^2, not one form the standard basis. How can you express it's image (maybe in terms of the standard basis?)? What happens, when you compose linear maps?
 
Last edited:
the columns of AB are linear combinations of the columns of A whose coefficients are the entries in the columns of B.

equivalently, as above, the columns of A are the images of the standard vectors ei under the map A, and the columns of AB are the images of the column vectors of B under the map A.

so you can imagine a block spanned by the columns of B. then apply the map A to this block and you get the block spanned by the columns of AB.

abstractly, matrices represent maps, and matrix multiplication corresponds to map composition.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 12 ·
Replies
12
Views
5K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 15 ·
Replies
15
Views
5K
  • · Replies 8 ·
Replies
8
Views
3K