Blob


1 ;; The first three lines of this file were inserted by DrScheme. They record metadata
2 ;; about the language level of this file in a form that our tools can easily process.
3 #reader(lib "htdp-advanced-reader.ss" "lang")((modname |33.2|) (read-case-sensitive #t) (teachpacks ((lib "draw.ss" "teachpack" "htdp") (lib "arrow.ss" "teachpack" "htdp") (lib "gui.ss" "teachpack" "htdp"))) (htdp-settings #(#t constructor repeating-decimal #t #t none #f ((lib "draw.ss" "teachpack" "htdp") (lib "arrow.ss" "teachpack" "htdp") (lib "gui.ss" "teachpack" "htdp")))))
4 ;overflow-n? : N -> N
5 ;Searches for a value from [n,+inf.0) such that the number returned is the largest natural number where (expt #i10. n) is still an inexact number rather than infinity.
7 (define (overflow-n? n)
8 (cond
9 [(< (expt #i10. (+ n 1)) +inf.0) (overflow-n? (add1 n))]
10 [else n]))
12 (overflow-n? 1)
14 underflow-n? : integer -> integer
15 ;Searches for a value from (-inf.0,n] such that the number returned is the smallest integer possible where (expt #i10. n) is still an inexact number rather than #i0
17 (define (underflow-n? n)
18 (cond
19 [(> (expt #i10. n) #i0) (underflow-n? (sub1 n))]
20 [else n]))