Why can't we multiply corresponding elements like addition is done?
Is there a specific reason why it won't be significant?
By definition, we have to multiply a row by columns.
Why such a definition other than multiplying corresponding elements?
Please ignore my ignorance. I had nowhere to ask. :(
The matrix multiplication is designed in such a way, that one can represent system of linear equations:
$$ \left\{\begin{array}{rcl} a_{11} \cdot x_{1} + a_{12} \cdot x_{2} + \dots + a_{1n} \cdot x_{n} = b_{1} \\ a_{21} \cdot x_{1} + a_{22} \cdot x_{2} + \dots + a_{2n} \cdot x_{n} = b_{2} \\ \dots \\ a_{m1} \cdot x_{1} + a_{m2} \cdot x_{2} + \dots + a_{mn} \cdot x_{n} = b_{m} \end{array}\right. $$
as $A \cdot x = b$, which seems to be quite a natural representation.