Closed
Description
https://tour.golang.org/flowcontrol/8
Newton's method for Sqrt is shown as
which is weird. Math does not use the same z for noting two different values, that only happens for us imperative programmers. Perhaps it should say something like
z_1 = z_0 ...
, with subscriptsz_(n+1) = z_n ...
z' = z ...