Higher-Order Programming » Lab Sessions
Session 0 (Solutions)
Lecturer: Jens Nicolay (jens.nicolay@vub.be) Assistant: Bjarno Oeyen (bjarno.oeyen@vub.be)
Numbers, Strings, Booleans...
Exercise 1
xxxxxxxxxx
1
123 ; an exact number
2
-42 ; an exact number
3
0.33333 ; an inexact number
4
1/3 ; an exact number
5
#t ; a boolean
6
#f ; a boolean
7
"hello" ; a string
8
"" ; a string
9
"world" ; a string
10
modulo ; a procedure
11
even? ; a procedure
12
+ ; a procedure
13
>= ; a procedure
14
string-length ; a procedure
Each of these expressions evaluates to itself, with the exception of the procedures.
modulo
, even?
, +
, >=
and string-length
are symbols that evaluate to a procedure.
Combinations
Exercise 2
xxxxxxxxxx
1
(string-length "VUB") ; -> 3
2
(abs -7) ; -> 7
3
(modulo 13 4) ; -> 1
4
(even? 19) ; -> #f
5
(string-length (string-append "Hello" " " "World")) ; -> 11
6
7
(string? "Guy L. Steele") ; -> #t
8
(number? "Gerald Jay Sussman") ; -> #f
9
(procedure? modulo) ; -> #t
10
(procedure? procedure?) ; -> #t
11
(boolean? (string? 5)) -> #t
12
13
(+ 10 15) ; -> 10 + 15 = 25
14
(- 5) ; -> -(5) = -5
15
(/ 6 2) ; -> 6 / 2 = 3
16
(+) ; -> 0
17
(- 100 (* 5 5)) ; -> 100 - (5 * 5) = 100 - 25 = 75
18
(/ (+ 100 200 300) 3) ; -> (100 + 200 + 300) / 3 = 600 / 3 = 200
Side note: Guy L. Steele and Gerald Jay Sussman are the names of the original designers of the Scheme programming language.
Exercise 3
e1=a+b2
xxxxxxxxxx
1
(define e1 (/ (+ a b) 2))
e2=a+be−c+df
xxxxxxxxxx
1
(define e2 (- (/ (+ a b)
2
e)
3
(/ (+ c d)
4
f)))
e3=a×a+2×a×b+b×b
xxxxxxxxxx
1
(define e3 (+ (* a a)
2
(* 2 a b)
3
(* b b)))
e4=a+bcd×egi−h
xxxxxxxxxx
1
(define e4 (* (/ (+ a
2
(/ b c))
3
d)
4
(/ e
5
(- (/ g i)
6
h))))
Procedures
Exercise 4
xxxxxxxxxx
1
(define (double a)
2
(* a 2))
Exercise 5
xxxxxxxxxx
1
(define (square a)
2
(* a a))
Exercise 6
xxxxxxxxxx
1
(define (celsius-to-fahrenheit c)
2
(- (* (+ c 40)
3
1.8)
4
40))
And, the other way around.
xxxxxxxxxx
1
(define (fahrenheit-to-celsius f)
2
(- (/ (+ f 40)
3
1.8)
4
40))
Exercise 7
xxxxxxxxxx
1
(define (average-of-three x y z)
2
(/ (+ x y z) 3))