[SICP 연습] 134 연습 3.65.

연습 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)))

방문해 주셔서 감사합니다. 도움이 되었으면 합니다.팔로우나 컬렉션, 댓글 또는 좋아요를 환영합니다.
본문을 수정하고 질문을 받기 위해 전재는 출처를 밝혀 주십시오.http://blog.csdn.net/nomasp

좋은 웹페이지 즐겨찾기