码迷,mamicode.com
首页 > 其他好文 > 详细

【SICP练习】134 练习3.65

时间:2015-03-29 09:30:17      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:series   for   compute   sicp   lisp   

练习3-65

原文

Exercise 3.65. Use the series
ln2 = 1- 1/2 + 1/3 - 1/4 + ……
to compute three sequences of approximations to the natural logarithm of 2, in the same way we did above for . How rapidly do these sequences converge?

代码

(define (ln2-summands n)
        (cons-stream (/ 1.0 n) 
                     (stream-map - (ln2-summands (+ n 1)))))
(define ln2-stream
        (partial-sums (ln2-summands 1)))

【SICP练习】134 练习3.65

标签:series   for   compute   sicp   lisp   

原文地址:http://blog.csdn.net/nomasp/article/details/44710615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!