-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrational-numbers.scm
69 lines (59 loc) · 1.4 KB
/
rational-numbers.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
(load "gcd.scm")
(define (make-rat n d)
(let (
(g (abs (gcd n d)))
(n (cond ((and (< n 0) (< d 0)) (- n))
((and (> n 0) (< d 0)) (- n))
(else n)
)
)
(d (cond ((and (< n 0) (< d 0)) (- d))
((and (> n 0) (< d 0)) (- d))
(else d)
)
)
)
(cons (/ n g) (/ d g))
)
)
(define (numer x) (car x))
(define (denom x) (cdr x))
(define (add-rat x y)
(make-rat (+ (* (numer x) (denom y))
(* (numer y) (denom x))
)
(* (denom x) (denom y))
)
)
(define (sub-rat x y)
(make-rat (- (* (numer x) (denom y))
(* (numer y) (denom x))
)
(* (denom x) (denom y))
)
)
(define (mul-rat x y)
(make-rat (* (numer x) (numer y))
(* (denom x) (denom y))
)
)
(define (div-rat x y)
(make-rat (* (numer x) (denom y))
(* (denom x) (numer y))
)
)
(define (equal-rat? x y)
(= (* (numer x) (denom y))
(* (numer y) (denom x))
)
)
(define (print-rat x)
(newline)
(display (numer x))
(display "/")
(display (denom x))
)
(define one-third (make-rat 1 3))
(define one-half (make-rat 1 2))
(print-rat (add-rat one-third one-third))
(print-rat (mul-rat (make-rat 2 -3) (make-rat -4 5)))