sicp每日一题[1.37]

Exercise 1.37

a. An infinite continued fraction is an expression of the form
f = N 1 D 1 + N 2 D 2 + N 3 D 3 + . . . f=\frac{N_1}{D_1+\frac{N_2}{D_2+\frac{N_3}{D_3+...}}} f=D1+D2+D3+...N3N2N1
As an example, one can show that the infinite continued fraction expansion with the N i N_i Ni and the D i D_i Di all equal to 1 produces 1 ϕ \frac{1}{\phi} ϕ1, where ϕ ϕ ϕ is the golden ratio (described in Section 1.2.2). One way to approximate an infinite continued fraction is to truncate the expansion after a given number of terms Such a truncation — a so-called k − t e r m   f i n i t e   c o n t i n u e d   f r a c t i o n k-term\ finite\ continued\ fraction kterm finite continued fraction — has the form
N 1 D 1 + N 2 . . . + N k D k \frac{N_1}{D_1+\frac{N_2}{...+\frac{N_k}{D_k}}} D1+...+DkNkN2N1
Suppose that n n n and d d d are procedures of one argument (the term index i i i) that return the N i N_i Ni and D i D_i Di of the terms of the continued fraction. Define a procedure c o n t − f r a c cont-frac contfrac such that evaluating ( c o n t − f r a c   n   d   k ) (cont-frac\ n\ d\ k) (contfrac n d k) computes the value of the k k k-term finite continued fraction. Check your procedure by approximating 1 ϕ \frac{1}{\phi} ϕ1 using

(cont-frac (lambda (i) 1.0)
           (lambda (i) 1.0)
           k)

for successive values of k k k. How large must you make k k k in order to get an approximation that is accurate to 4 decimal places?

b. If your cont-frac procedure generates a recursive process, write one that generates an iterative process. If it generates an iterative process, write one that generates a recursive process.

这道题题干比较长,理解起来有点费劲,其实就是设计一个函数来计算题目中有限项的公式的结果。a 和 b 要求分别用迭代和递归的方法来实现,并找出满足条件的最小 k 值。为了便于展示,用 display 函数把 k 和 算出的近似值一起打印出来

(define (close-enough? x y tolerance)
  (< (abs (- x y)) tolerance))

; 黄金分割比例是 φ = (1+√5)/2,倒数 1/φ ≈ 0.61803398875
; 保留4位有效数字就是 0.6180,所以结果需要在 0.6175 ~ 0.6184 之间
; 取 0.6175 和 0.6184 的中间值 0.61795,只要与其差值不大于 0.00045 即可
(define tolerance 0.00045)
(define midterm 0.61795)

; 注意 n 和 d 都是 procedure 而不是数字,k 表示要计算的项数
; 他们都是常数函数,接受一个参数 i,但是无论 i 是多少,都返回 1.0
(define (cont-frac n d k)
  ; iterative implementation
  (define (frac-iter k pre)
    (if (= k 1)
        pre
        (frac-iter (- k 1) (/ (n k) (+ (d k) pre)))))

  ; recurative implementation
  (define (frac-recur k)
    (if (= k 1)
        (/ (n k) (d k))
        (/ (n k) (+ (d k) (frac-recur (- k 1))))))

  ; 找到满足要求的最小k值
  (define (find k)
    (let ((temp (frac-iter k 1.0)))
    ;(let ((temp (frac-recur k)))
      (if (close-enough? temp midterm tolerance)
          (and (display k)
               (display " *** ")
               (display temp))
          (find (+ k 1)))))

  (find 1))


(cont-frac (lambda (i) 1.0)
           (lambda (i) 1.0)
           10)

; 两种实现方法的结果都是相同的
8 *** 0.6176470588235294
  • 17
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值