0

In usual matrix muktiplication, we multiply rows of first matrix to the column of second matrix. My worries are

  1. Why we can't multipy column of first matrix with row of second matrix in matrix multiplication

  2. Why not we use natural multiplication of corresponding entries just like in addition. From where this idea comes ?

red_trumpet
  • 8,515
Taj
  • 123
  • 1
  • Multiplication is not commutative. If you multiply column of first with rows of second, that's just like doing the matrix product in the other order.
  • The idea is that matrices represent linear functions, and the matrix product is supposed to correspond to composition of functions.
  • – Nick Mar 06 '20 at 03:22
  • @Nick Why not give this as an answer? – Carl Schildkraut Mar 06 '20 at 04:42
  • 1
    @Taj you might find this post helpful – Ben Grossmann Mar 06 '20 at 09:43
  • I believe the question can be rephrased as follows: why matrix multiplication is defined the way it is and not any other way? The answer is that this specific multiplication corresponds to composition of linear operators. – lisyarus Mar 06 '20 at 09:43
  • If there are two matrice A and B and you are saying BA value =AB which is not correct because matrix multiplication is not commutative – आर्यभट्ट Mar 06 '20 at 10:08