]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.15.
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 14 Jun 2010 10:42:24 +0000 (16:12 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 14 Jun 2010 10:42:24 +0000 (16:12 +0530)
src/sicp/ex2_15.clj

index 7072794c42308e235657d948ca4425c12df9c967..3ccf240f8374d17f130cfd7a90d6d903cd4f774b 100644 (file)
@@ -2,8 +2,8 @@
   (:use [sicp utils ch2_1_extended ex2_7 ex2_8 ex2_12]
        [clojure.test]))
 
-(def r1 (make-center-percent 1000 0.01))
-(def r2 (make-center-percent 100  0.01))
+(def r1 (make-center-percent 1000 1))
+(def r2 (make-center-percent 100  5))
 
 (def r3 (sub-interval (add-interval r1 r2) r2))
 ;;=> (999.8799999999999 1000.1200000000001)
@@ -27,6 +27,5 @@ Now r1+r2-r2 = c1 + c2 - c1 +/- (2*w1+w2)
 
 i.e. we have a new percentage width as the errors add up. The inference
 from this is that, we reduce the number of ranges in a calculation to
-get a more accurate range. So, yes, Eva Lu Ator is right.
-"
-  )
\ No newline at end of file
+get a more accurate range. So, yes, Eva Lu Ator is right."
+)
\ No newline at end of file