;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; CSCI--4150 Introduction to Artificial Intelligence, Fall 2003 ; ; Assignment 1 ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; Problem 4: exercise 2 from Section 6.3 ; (define (income-tax taxable-income) 'your-procedure-here) ; ; Problem 5: ; (define (swap Lst j k) 'your-procedure-here) ; ; Problem 6: ; (define (element-number e Lst) 'your-procedure-here) ; ; Problem 7: days-in-month ; (define (days-in-month m leap-year?) 'your-procedure-here) ; ; Problem 8: ; (define (meters->distance m) 'your-procedure-here) ; ; Problem 9: ; (define (sum-reciprocals N) 'your-procedure-here)