What is the Dot Product of Two 2x2 Matrices?

Click For Summary
SUMMARY

The discussion clarifies the distinction between the matrix product and the dot product of two 2x2 matrices. The dot product, also known as the Frobenius inner product, results in a scalar value calculated by summing the products of corresponding elements from the two matrices. Specifically, for matrices A and B, the dot product is defined as A·B = ae + bf + cg + dh, where A = [a, b; c, d] and B = [e, f; g, h]. This contrasts with the matrix product, which yields another matrix.

PREREQUISITES
  • Understanding of matrix operations, specifically matrix multiplication and dot products.
  • Familiarity with the concept of orthonormal bases in linear algebra.
  • Knowledge of the Frobenius inner product and its application to matrices.
  • Basic proficiency in mathematical notation and equations.
NEXT STEPS
  • Study the properties of the Frobenius inner product in more detail.
  • Learn about orthonormal bases and their significance in linear transformations.
  • Explore matrix operations in Python using NumPy for practical applications.
  • Investigate the implications of dot products in image processing and computer vision.
USEFUL FOR

Students and professionals in mathematics, computer science, and engineering, particularly those involved in linear algebra, image processing, and data analysis.

Owen-
Messages
40
Reaction score
0
This seems like a very basic question that I should know the answer to, but in my image processing class, my teacher explained that a basis set of images(matrices) are orthonormal.

He said that the DOT product between two basis images (in this case two 2x2 matrices) is 0. so, for example

\begin{equation}
\begin{bmatrix}
a & b\\
c & d
\end{bmatrix}
\cdot
\begin{bmatrix}
e & f\\
g & h
\end{bmatrix}
=0
\end{equation}

I don't understand how this can be. I always thought it gave another matrix, and not a direct value:
\begin{equation}
\begin{bmatrix}
a & b\\
c & d
\end{bmatrix}
\cdot
\begin{bmatrix}
e & f\\
g & h
\end{bmatrix}
=
\begin{bmatrix}
ae+bg & af+bh\\
ce+dg & cf+dh
\end{bmatrix}
\end{equation}

Can someone help me out? It would be unbelieveably helpful,
Thanks!
Owen.
 
Physics news on Phys.org
The only possibility I can think of is to take a 2x2 matrix and write it out in the form ##a e_{11} + b e_{12} + c e_{21} + d e_{22}##, ie as a four dimensional vector space. Then the e's form an orthonormal basis.
 
Owen- said:
I don't understand how this can be. I always thought it gave another matrix, and not a direct value:
\begin{equation}
\begin{bmatrix}
a & b\\
c & d
\end{bmatrix}
\cdot
\begin{bmatrix}
e & f\\
g & h
\end{bmatrix}
=
\begin{bmatrix}
ae+bg & af+bh\\
ce+dg & cf+dh
\end{bmatrix}
\end{equation}

Can someone help me out? It would be unbelieveably helpful,
Thanks!
Owen.
That's the matrix product, not the dot product. A dot product (inner product) is a scalar. Always. For matrices, the typical definition of the dot product is the Frobenius inner product. Simply compute as if the matrix was a vector. For real matrices,

\begin{equation}
A\cdot B \equiv \sum_i \sum_j A_{ij} B_{ij}
\end{equation}
For your pair of 2x2 matrices,
\begin{equation}
\begin{bmatrix}
a & b\\
c & d
\end{bmatrix}
\cdot
\begin{bmatrix}
e & f\\
g & h
\end{bmatrix}
= ae + bf + cg + dh\end{equation}
 
Perfect thanks a lot!
 

Similar threads

  • · Replies 11 ·
Replies
11
Views
6K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 24 ·
Replies
24
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K