Skip to content

Commit ffbf221

Browse files
authored
Lecture 7: nonstrict inequality (#20)
1 parent 142c6e3 commit ffbf221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/07_Iterative_methods.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,9 @@ Combining this with our stopping criterion from **Algorithm 1**, that is
495495
we finally obtain
496496
```math
497497
\frac{\|\mathbf{x}_\ast - \mathbf{x}^{(k)} \|}{\| \mathbf{x}_\ast \|}
498-
κ(\mathbf{A}) \, ε.
498+
< κ(\mathbf{A}) \, ε.
499499
```
500-
In other words **our stopping criterion ensures** that the **relative error of the returned solution** is no larger than $κ(\mathbf{A})$ times the chosen tolerance.
500+
In other words **our stopping criterion ensures** that the **relative error of the returned solution** is smaller than $κ(\mathbf{A})$ times the chosen tolerance.
501501
502502
If the matrix is well-conditioned, i.e. $κ(\mathbf{A})$ is close to $1$,
503503
then the relative residual $\frac{\left\|\mathbf{r}^{(k)} \right\|}{\| \mathbf{b} \|}$

0 commit comments

Comments
 (0)