6.001 Fall 98: Current announcements

Sunday, Dec. 20

The semester is over! See Final exam results.

Friday, Dec. 11

An optional Q&A LA session will be held on Sunday, Dec 13, from 7-9pm in 54-100.

Thursday, Dec. 3 -- Final Exam Announcement

The Final Exam Announcement is available, as well as a sample final (ps| pdf| solutions-ps| solutions-pdf).

Tuesday, Nov. 24 -- Problem Set 9: Even?

Monday, Nov. 16 -- Problem Set 8 Loading and Lab Exercise 2

Saturday, Nov. 14 -- Additional Notes on Dynamic Scoping (PS8)

Additional notes are available discussing the addition of dynamic scoping to Scheme. These may be helpful as you explore this issue on Problem Set 8.

Monday, Nov. 9 -- Problem Set 7 Handout

A section was omitted on page 2 of the problem set handout given out in lecture. The problem set handout on the web has been updated to include this missing section. (The pdf file has also been updated to include the missing section).

Quiz 2, Nov 6

Wednesday, Oct 28 -- Problem Set 6, Tutorial Exercise 2

The last two lines of the code are fixed below:
(define (make-df-strategy-2 goal? neighbors)
  (define (where-next? here)
    (let ((*to-be-visited* '()))         ; Nodes to look at
      (set! *to-be-visited*              ; Add on new nodes
            (append (neighbors here) *to-be-visited*))
      (cond ((goal? here) #T)            ;  We win!
            ((null? *to-be-visited*) #F) ; Nowhere left to look
            (else                        ; Visit next node
             (let ((next (car *to-be-visited*)))
               (set! *to-be-visited* (cdr *to-be-visited*))
               next)))))
  where-next?)

Tuesday, Oct 27

Monday, Oct 26 -- Exam 1 Regrades Finished

After incorporating the regrades, the new stats on quiz 1: average 73.71, standard deviation is 15.89. No more regrades will be accepted.

Thursday, Oct 22 -- Lab LA Staffing Hours

There have been some changes in the LA lab staffing hours during the weekends.

Monday, Oct 19 -- Problem Set 5, Problem 9

Since the cotangent function is infinite at x=0, and you can't use div-series because the constant term for sin x is zero, generate a series for (x cot x) instead of (cot x).

Tuesday, Oct. 13 -- Problem Set 4 tar/zip files

Quiz 1 Solutions, Oct. 9

Sunday, Oct. 4 -- Quiz 1 Review Sessions

Thursday, Oct. 1 -- Quiz 1 Info

Sunday, Sept. 27 -- Images for Problem Set 3

Thursday, Sept. 24 -- Bug Fixes to Problem Set 2 Code:

Wednesday, Sept. 23

Sunday, Sept. 20 -- Errata to Problem Set 2:

Wednesday, Sept. 9

Tuesday, Sept. 8


Return to 6.001 Home Page

Send comments about this site to 6001-webmaster@ai.mit.edu.
Copyright © 1998 by Massachusetts Institute of Technology. All rights reserved.
Last modified: Sun Dec 20 11:36:03 EST 1998