-
Notifications
You must be signed in to change notification settings - Fork 20
/
testing.scm
97 lines (78 loc) · 1.11 KB
/
testing.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
(load-option 'format)
(define (TRY guess x)
; (display (format "~F ~%" guess))
(display guess)
(newline)
(if (GOOD-ENOUGH? guess x)
guess
(TRY (IMPROVE guess x) x)
)
)
(define (SQRT x)
(display "Finding square root of ")
(display x)
(newline)
(TRY (+ 1) x)
)
(define (GOOD-ENOUGH? guess x)
(<
(ABS (- (SQUARE guess) x))
0.0000000000001
)
)
(define (IMPROVE guess x)
(AVERAGE guess (/ x guess))
)
;; basic procedures below
(define (AVERAGE a b)
(/ (+ a b) 2)
)
(define (ABS x)
(cond
((< x 0) (- x))
((> x 0) x)
((= x 0) 0)
)
)
(define (SQUARE x)
(* x x)
)
(TRY 1 2)
(define (TRY guess x)
; (display (format "~F" guess))
(display guess)
(newline)
(if (GOOD-ENOUGH? guess x)
guess
(TRY (IMPROVE guess x) x)
)
)
(define (SQRT x)
(display x)
(newline)
(TRY (+ 1) x)
)
(define (GOOD-ENOUGH? guess x)
(<
(ABS (- (SQUARE guess) x))
0.01
)
)
(define (IMPROVE guess x)
(AVERAGE guess (/ x guess))
)
;; basic procedures below
(define (AVERAGE a b)
(/ (+ a b) 2)
)
(define (ABS x)
(cond
((< x 0) (- x))
((> x 0) x)
((= x 0) 0)
)
)
(define (SQUARE x)
(* x x)
)
(TRY 1 2)