Take the case of this matrix multiplication:
$$
A x=
\begin{pmatrix}
1 & -1 & 2\\
0 & -3 & 1\\
\end{pmatrix}
\begin{pmatrix}
2 \\ 1 \\ 0
\end{pmatrix}
$$
The answer of which is
$
\begin{pmatrix}
1 \\
-3
\end{pmatrix}
$.
Source: https://mathinsight.org/matrix_vector_multiplication
I understand there are three components in $A$ and $x.$ So how can matrix multiplication have two (not sure if the component will be the right term) terms as part of the answer leading to matrix multiplication? What is the way to visualize the result? I think with three components, the matrix multiplication should have the result in three parts. I know I am missing something.