Homework 01 : due 10/7/95

1.  Please settle the details of your computer
	account in the Boelter Hall Lab.  Learn how
	to login, how to run the `handout' program,
	how to `submit' homeworks, and how to run
	LISP.

2.	Please run LISP and determined the results of the
	following function calls

	(+ 1 2 3 4 5 6)
21
	(- 1 2)
-1
	(- 1 2 3)
-4

	(- 1 2 3 4)
-8

	(* 2 3)
6

	(* 2 3 4)
24

	(/ 3 2)
3/2

	(/ 3 2 5)
3/10

	(max 1 2 3 4)
4
	(min 1 2 3 4)
1
	(car  '(a b c d))
A
	(car  '((a b) c d))
(A B)
	(cdr  '(a b c d))
(B C D)
	(cdr  '(a (b c) d))
((B C) D)
	(cadr '(a (b c) d))
(B C)
	(nth 3 '(1 2 3 4 5))
4
	(nth 3 '(0 1 2 3 5))
3
	(cons 1 2)
(1 . 2)
	(cons 1 (cons 2 nil))
(1 2)
	(cons (cons 1 nil) 2)
((1) . 2)

	(setq foo '(a b c ((d e) (f g)) (h i) j))
(A B C ((D E) (F G)) (H I) J)
	a)  'b
(first (cdr foo))
	b)	'(d e)
(first (nth 3 foo))
	c)	'(h i)
(second (reverse foo))
	d)	'g
(second (second (nth 3 foo)))