By definition, we have $$ \|V\|_p := \sqrt[p]{\displaystyle \sum_{i=1}^{n}|v_i|^p} \qquad \text{and} \qquad \|A\|_p := \sup_{x\not=0}\frac{||Ax||_p}{||x||_p} $$ and if $A$ is finite, we change sup to max.
However I don't really get how we get to the definition of $||A||_1$ as the maximum absolute column sum of the matrix as stated in Wikipedia
For example, assume $A=\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22}\end{bmatrix}$. Then $$ ||A||_1 = \max_{x\not=0} \frac{\left\|\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22}\end{bmatrix}\cdot \begin{bmatrix} x_{1} \\ x_{2}\end{bmatrix}\right\| }{\left\|\begin{bmatrix} x_{1} \\ x_{2}\end{bmatrix}\right\|} = \max_{x\not=0} \frac{|a_{11}x_1+a_{12}x_2|+|a_{21}x_1+a_{22}x_2|}{|x_1|+|x_2|} $$ That's what I have gotten so far, but I don't really see how this is related to the max of the column sum. Can anyone help me explain this?