Skip to content

Commit 560d1c6

Browse files
committed
Minor improve
1 parent b3118b4 commit 560d1c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

course01.tm

+5-5
Original file line numberDiff line numberDiff line change
@@ -1213,12 +1213,12 @@
12131213
guess <math|y> for the value of the square root of a number <math|x>, we
12141214
can perform a simple manipulation to get a better guess (one closer to the
12151215
actual square root) by averaging <math|y> with
1216-
<math|x<around*|/|y|\<nobracket\>>>.<hlink||#FOOT21><\footnote>
1216+
<math|x<around*|/|y|\<nobracket\>>>.<\footnote>
12171217
This square-root algorithm is actually a special case of Newton's method,
12181218
which is a general technique for finding roots of equations. The
12191219
square-root algorithm itself was developed by Heron of Alexandria in the
12201220
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.
12221222
</footnote> For example, we can compute the square root of 2 as follows.
12231223
Suppose our initial guess is 1:
12241224

@@ -1464,9 +1464,9 @@
14641464
an approximation to the cube root of <math|x>, then a better
14651465
approximation is given by the value <math|<frac|x<around*|/|y<rsup|2>+2*y|\<nobracket\>>|3>>.
14661466
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.)
14701470
</exercise>
14711471

14721472
<subsection|Procedures as Black-Box Abstractions><label|1.1.8>

0 commit comments

Comments
 (0)