I have the following matrix: $A= \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 1 \\ \end{bmatrix} $ What is the norm of $A$? I need to show the steps, should not use Matlab...
I know that the answer is $\sqrt{\sqrt{5}/2+3/2}$. I am using the simple version to calculate the norm but getting different answer: $\sum_{i=0}^3\sum_{j=0}^3(a_{ij})^2=\sqrt{1+1+1+1}=2$ Maybe this is some different kind of norm, not sure.
This might help - i need to get a condition number of $A$, which is $k(A)=\|A\|\|A^{-1}\|$...that is why i need to calculate the norm of $A$.