Can anyone tell me if I have made right thoughts in the attached task? To solve the system I just solve $x=A^{-1}b$. To find the 2-norm of matrix $A$ I use the "power method", because the 2-norm for a normal matrix like matrix $A$ is the largest eigenvalue for $A$?
I have found a formula for condition number for 2-norm of a normal matrix: $$ \mathrm{cond}(A)=\frac{\mathrm{eigenvalue}_\max(A)}{\mathrm{eigenvalue}_\min(A)} $$ To find $\mathrm{eigenvalue}_\min(A)$, I just find the eigenvalue for $A^{-1}$ with "inverse power method"? Have I understood it correctly?