Now I have $A =$ $$\begin{bmatrix}0.2 & 0.4\\ 0.21&0.39 \end{bmatrix}$$, and $b=$ $$\begin{bmatrix}0.6\\0.6\\ \end{bmatrix}$$ $\\$
When I solve $Ax=b$, I have the answer $x =$ $$\begin{bmatrix}1\\1\\ \end{bmatrix}$$.
But when I type in norm(A\[.6;.6] - [1;1]), I got an error of $\, 1.9 × 10^{−15}$.
And when I solve $A^{5}x=b^{5}$, I type norm(A^5\[.6^5;.6^5] - [1;1]), I got a greater error $1.4 × 10^{−7} $
Why does this happen? Is this related to the machine-$\epsilon$?