File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1213
1213
guess <math|y> for the value of the square root of a number <math|x>, we
1214
1214
can perform a simple manipulation to get a better guess (one closer to the
1215
1215
actual square root) by averaging <math|y> with
1216
- <math|x<around*|/|y|\< nobracket\> >>.<hlink||#FOOT21>< \f ootnote>
1216
+ <math|x<around*|/|y|\< nobracket\> >>.<\f ootnote>
1217
1217
This square-root algorithm is actually a special case of Newton's method,
1218
1218
which is a general technique for finding roots of equations. The
1219
1219
square-root algorithm itself was developed by Heron of Alexandria in the
1220
1220
first century <abbr|A.D.> We will see how to express the general Newton's
1221
- method as a Lisp procedure in <smart-ref|sec: 1.3.4> .
1221
+ method as a Lisp procedure in Section 1.3.4.
1222
1222
</footnote> For example, we can compute the square root of 2 as follows.
1223
1223
Suppose our initial guess is 1:
1224
1224
1464
1464
an approximation to the cube root of <math|x>, then a better
1465
1465
approximation is given by the value <math|<frac|x<around*|/|y<rsup|2>+2*y|\< nobracket\> >|3>>.
1466
1466
Use this formula to implement a cube-root procedure analogous to the
1467
- square-root procedure. (In <smart-ref|sec: 1.3.4> we will see how to
1468
- implement Newton's method in general as an abstraction of these
1469
- square-root and cube-root procedures.)
1467
+ square-root procedure. (In Section 1.3.4 we will see how to implement
1468
+ Newton's method in general as an abstraction of these square-root and
1469
+ cube-root procedures.)
1470
1470
</exercise>
1471
1471
1472
1472
<subsection|Procedures as Black-Box Abstractions><label|1.1.8>
You can’t perform that action at this time.
0 commit comments