I just came across this strange post where this fellow (is a one-by-one-matrix just a number (scalar)?) supposedly does bad maths and multiplies matrices of incompatible sizes by padding it with zeros as:
$$ \begin{bmatrix} c \end{bmatrix} \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix} = \begin{bmatrix} c & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix} \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix} = \begin{bmatrix} ca_{11} & ca_{12} & ca_{13} \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix} $$
Now my question is, why is this a bad idea? I might not be particularly useful, but it is a possible definition. Why is this not used?