-
Notifications
You must be signed in to change notification settings - Fork 5
/
misc.sls
116 lines (85 loc) · 2.54 KB
/
misc.sls
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!r6rs
(library (mpl misc)
(export product? quotient? sum? difference? power? factorial? function?
exp?
sin?
cos?
tan?
vars
base
exponent
inexact-number?)
(import (rnrs)
(mpl match))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (product? expr)
(match expr
( ('* . elts) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (quotient? expr)
(match expr
( ('/ . elts) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (sum? expr)
(match expr
( ('+ . elts) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (difference? expr)
(match expr
( ('- . elts) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (power? expr)
(match expr
( ('^ x y) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (factorial? expr)
(match expr
( ('! n) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (exp? expr)
(match expr
( ('exp n) #t )
( else #f )))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (sin? expr)
(and (pair? expr)
(eq? (car expr) 'sin)))
(define (cos? expr)
(and (pair? expr)
(eq? (car expr) 'cos)))
(define (tan? expr)
(and (pair? expr)
(eq? (car expr) 'tan)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (function? expr)
(and (list? expr)
(> (length expr) 1)
(symbol? (car expr))
(not (member (car expr)
'(+ - * / ^ !)))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (base expr)
(if (power? expr)
(list-ref expr 1)
expr))
(define (exponent expr)
(if (power? expr)
(list-ref expr 2)
1))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-syntax vars
(syntax-rules ()
((vars name ...)
(begin (define name 'name)
...))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (inexact-number? x)
(and (number? x)
(inexact? x)))
)