diff --git a/Linear_Algebra-project.ipynb b/Linear_Algebra-project.ipynb index 7a7648e..1120200 100644 --- a/Linear_Algebra-project.ipynb +++ b/Linear_Algebra-project.ipynb @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -154,7 +154,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -165,7 +165,7 @@ "Condition of K[2:13,2:13] = 52.23542514351013\n", "\n", "a) Expected error of u: 6.640986594413607\n", - "b) The condition of K is large because it means t is very \n", + "b) The condition of K is large because it ill-conditioned, meaning it is very sensistive to small changes in the input\n", "c) Expected error of u[2:13]: 5.223542514351013e-15\n" ] } @@ -179,7 +179,7 @@ "error1 = condition1*1e-16\n", "error2 = condition2*1e-16\n", "print('a) Expected error of u:',error1)\n", - "print('b) The condition of K is large because it means t is very ')\n", + "print('b) The condition of K is large because it ill-conditioned, meaning it is very sensistive to small changes in the input')\n", "print('c) Expected error of u[2:13]:',error2)" ] },