I want to calculate the norm of the matrix $$A = \left(\begin{array}{cc} 1&1 \\ 0&1\end{array}\right).$$ The norm is $$\Vert A \Vert_2 = \sup_{\Vert v \Vert = 1}\Vert Av \Vert.$$ I can show that $\Vert A \Vert_2$ is largest singular value of $A$ and so, is easy to find the norm. But I would like to know how to calculate explicitly, only using the definition of $\Vert A \Vert_2$.
If all the eigenvectors are genuine, so we can take an orthonormal basis (by Gram-Schmidt) of eigenvectors and write $$\Vert Av \Vert = \Vert A(c_1e_1 + c_2e_2) \Vert = \Vert c_1Ae_1 + c_2Ae_2\Vert = \Vert c_1\lambda_1e_1 + c_2\lambda_2e_2\Vert.$$ But $\Vert v \Vert = 1$ implies $$1 = \Vert c_1e_1 + c_2e_2 \Vert^2 = c_1^2\Vert e_1 \Vert^2 + c_2^2\Vert e_2 \Vert^2 = c_1^2 + c_2^2,$$ since $e_1$ and $e_2$ are orthogonal.
If we have only one genuine eigenvector (that is the case here), I think we can to use similar arguments with some power of $n$.
Anyway, I could not go any further. I appreciate any help!
Edit. By the comments below, my approach seems not work.
A possible way :
We parametrize the set of unit vectors for $\| \cdot\|$ of $\mathbb{R}^2$ by $t \mapsto (\cos t, \sin t), t \in [0,2\pi]$.
Hence :
$$\|A\|_2^2 = \max_{t \in [0,2\pi]} (\cos t + \sin t)^2+\sin^2 t = \max_{t \in [0,2\pi]} \sin 2t+\sin^2 t.$$
The problem is then reduced to find the maximum of a one variable function over $[0,2\pi]$. It requires some computation in this case though.