Tagged Questions

SICP is the book Structure and Interpretation of Computer Programs by Harold Abelson and Gerald Jay Sussman with Julie Sussman and published by the MIT Press.

learn more… | top users | synonyms

23
votes
18answers
3k views

Which language would you use for the self-study of SICP?

I've caught the bug to learn functional programming for real. So my next self-study project is to work through the Structure and Interpretation of Computer Programs. Unfortunately, I've never learned ...
22
votes
5answers
2k views

Can I use Common Lisp for SICP or is Scheme the only option?

Also, even if I can use Common Lisp, should I? Is Scheme better?
15
votes
5answers
5k views

What is the best Scheme implementation for working through SICP?

I have been using PLT Scheme, but it has some issues. Does anyone know of a better implementation for working through SICP?
14
votes
3answers
2k views

Dr Racket problems with SICP

I'm working through SICP. Currently, in the first chapter, I'm having problems getting Racket to let me redefine "primitives". For instance, I was under the impression that I should be able to ...
13
votes
10answers
5k views

SICP … better programming?

Last year I read an article on http://jaortega.wordpress.com/2007/01/31/a-scheme-bookshelf/ that claimed that if you read/study SICP "It will expand your mind. It will cure your diseases", I also read ...
11
votes
7answers
1k views

SICP… The top mind-bending book? [closed]

Possible Duplicate: What is the single most influential book every programmer should read? I just finished going over Abelson and Sussman’s Structure and Interpretation of Computer ...
11
votes
2answers
488 views

Seemingly unnecessary case in the unification algorithm in SICP

I'm trying to understand the unification algorithm described in SICP here In particular, in the procedure "extend-if-possible", there's a check (the first place marked with asterix "*") which is ...
10
votes
3answers
351 views

is SICP still recommended?

I have some experience with python, I asked for a new language, and said that i am having a hard time implementing what I have learned. they suggested I learn SICP. Saying it uses a great language and ...
9
votes
1answer
878 views

Is there an equivalent to Lisp's “runtime” primitive in Scheme?

According to SICP section 1.2.6, exercise 1.22: Most Lisp implementations include a primitive called runtime that returns an integer that specifies the amount of time the system has been running ...
9
votes
6answers
2k views

What do you think about the loss of MIT's 6.001 (SICP) course?

MIT abandoned its legendary 6.001 (Structure and Interpretation of Computer Programs) course and replaced it with 6.00, 6.01 and 6.02 in the new curriculum. They are AFAIK about Python and robots. ...
8
votes
1answer
246 views

Scheme, SICP, R5RS, why is delay not a special form?

This is concerning chapter 3.5 from SICP, in which streams are being discussed. The idea is that: (cons-stream 1 (display 'hey)) Should not evaluate the second part of the cons-stream, so it should ...
8
votes
1answer
287 views

Arithmetic with Church Numerals

I am working through SICP, and the problem 2.6 has put me in something of a quandary. In dealing with Church numerals, the concept of encoding zero and 1 to be arbitrary functions that satisfy certain ...
8
votes
5answers
2k views

After “The Little Schemer”, what's next?

So I just read The Little Schemer and found it really good! I had no prior functional programming background, apart from the "infamous" parenthesis myth I so much heard about Lisp :P I found it an ...
8
votes
3answers
516 views

What's the explanation for Exercise 1.6 in SICP?

I'm just beginning to work through SICP (on my own; this isn't for a class), and I've been struggling with Exercise 1.6 for a couple of days and I just can't seem to figure it out. This is the one ...
7
votes
6answers
1k views

Structure and Interpretation of Computer Programs, what level of maths ability is required?

I regrettably haven't studied mathematics since I was 16 (GCSE level), I'm now a 27 year old C# developer. Would it be a fruitless exercise trying to work through Structure and Interpretation of ...
7
votes
13answers
1k views

SICP Exercise 1.3 request for comments

I'm trying to learn scheme via SICP. Exercise 1.3 reads as follow: Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two larger numbers. Please comment ...
6
votes
2answers
136 views

Run SICP Scheme files like fast-failing tests

After a few years of programming it seems time to finally attack SICP. However, instead of editing and running everything in Emacs, I'd rather use a different editor and a simple makefile to run all ...
6
votes
3answers
150 views

Question about SICP chpt 4.1 : How does (analyze expr) help speed up eval?

I'm reading the following section of SICP http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-26.html#%_sec_4.1.7 According to the text, the following transformation of eval will improve offers a ...
6
votes
1answer
855 views

Clojure- why doesn't this piece of code work in clojure, is there some lazy evaluation gotcha I am missing?

Am new to clojure and learning it by working through SICP. I cannot get this piece of code from SCIP 1.3.1 to work. What am I missing ? (defn sum [term a next b] (if (> a b) 0 (+ ...
6
votes
3answers
2k views

Which language in DrScheme for SICP?

I have been using the Module for SICP in DrScheme 4.2 but which language has the best support for SICP in DrScheme? Has anyone here tried this? Thanks.
6
votes
3answers
596 views

Examining the internals of the functions in Haskell

I am a Haskell newbie, though had a previous Lisp/Scheme experience. Right now I am looking at the examples from SICP and trying to implement them in Haskell to get more hands-on experience. In the ...
6
votes
6answers
3k views

How do I get a scheme interpreter working inside Emacs?

I'm going through SICP and I'd like to have an interpreter analogous to the interactive Python interpreter to play around in while I'm watching the lectures and reading the book. Furthermore, I'd like ...
6
votes
12answers
2k views

Concepts that surprised you when you read SICP?

SICP - "Structure and Interpretation of Computer Programs" Explanation for the same would be nice Can some one explain about Metalinguistic Abstraction
5
votes
2answers
109 views

How do you write an MIT Scheme macro to return a lambda form?

I'm baffled by trying to create the equivalent of this trivial (in Common Lisp) macro in MIT Scheme: (defmacro funcify (exp) `(lambda (x) ,exp)) This is for a simple personal project, a ...
5
votes
1answer
281 views

Eager evaluation/applicative order and lazy evaluation/normal order

As far as I know, eager evaluation/applicative order evaluates all arguments to a function before applying it, on the other hand, lazy evaluation/normal order evaluates the arguments only when needed. ...
5
votes
2answers
374 views

Is there a Scheme interpreter that uses Normal-order evaluation?

I've been slowly working my way though the exercises in Structure and Interpretation of Computer Programs. Section 1.1.5 talks about applicative vs. normal-order evaluation, and the topic has come up ...
5
votes
6answers
365 views

In SICP exercise 2.26 using DrScheme, why does cons return a list, instead of a pair of lists?

In SICP exercise 2.26, this Scheme code is given: (define x (list 1 2 3)) (define y (list 4 5 6)) Then this cons call is given: (cons x y) I expected a pair of lists would result, ((1 2 3) (4 5 ...
4
votes
1answer
148 views

SICP sqrt NullPointerException

I've encountered an unexpected NullPointerException while implementing some beginning SICP code in Clojure. In particular, I want to implement the iterative square root procedure from section 1.1.7. ...
4
votes
2answers
89 views

A better explanation of using stream to generate numbers with alternating signs

The code here can generate numbers like this [1 -2 3 -4 5 -6 7 -8 9 -10 ...] (define (integers-starting-from n) (cons-stream n (stream-map - (integers-starting-from (+ n 1))))) I don't quite ...
4
votes
4answers
514 views

What are the actual differences between Scheme and Common Lisp? (Or any other two dialects of Lisp)

Note: I am not asking which to learn, which is better, or anything like that. I picked up the free version of SICP because I felt it would be nice to read (I've heard good stuff about it, and I'm ...
4
votes
3answers
298 views

As C# developer without Com Sci Degree, which book would I benefit more from reading: SICP or HTDP?

I have been programming for about five years, I currently work as a C# developer. More and more I am noticing that I have holes in my knowledge due to my lack of a computer science degree. So I'm ...
4
votes
1answer
118 views

Help understanding this implementation of cons and car in scheme using lambdas

My question relates to the following code: (define (cons. x y) (lambda (m) (m x y))) (define (car. z) (z (lambda (p q) p))) My problem is with how this code actually works. As far as I can ...
4
votes
2answers
371 views

Confused on Miller-Rabin

As an exercise for myself, I'm implementing the Miller-Rabin test. (Working through SICP). I understand Fermat's little theorem and was able to successfully implement that. The part that I'm getting ...
4
votes
1answer
486 views

What the heck is the “Structure and Interpretation of Computer Programs” cover drawing about? [closed]

What the heck is the Structure and Interpretation of Computer Programs cover drawing about? I mean I know what "eval", "apply", and 'λ' all mean, but I'm having a hard time deciphering the rest of ...
4
votes
3answers
735 views

No idea how to solve SICP exercise 1.11

This is not homework. Exercise 1.11: A function f is defined by the rule that f(n) = n if n<3 and f(n) = f(n - 1) + 2f(n - 2) + 3f(n - 3) if n> 3. Write a procedure that computes f by means ...
4
votes
2answers
266 views

SICP 1.31: Approximating Pi

I'm working through SICP on my own, so I don't have an instructor to ask about this. This code is supposed to approximate pi but always returns zero instead. (define (approx-pi acc) (define ...
4
votes
3answers
751 views

SICP making change

So; I'm a hobbyist who's trying to work through SICP (it's free!) and there is an example procedure in the first chapter that is meant to count the possible ways to make change with american coins; ...
4
votes
9answers
1k views

HtDP vs. Concrete Abstractions vs.?

I want to teach myself to program. To give a little background, I have a history degree and my math skills are about the college algebra level (and probably on the lowish end of that). I'm looking for ...
3
votes
1answer
175 views

Running SICP Pattern Matching Rule Based Substitution Code

I have found the code from this lesson online (http://groups.csail.mit.edu/mac/ftpdir/6.001-fall91/ps4/matcher-from-lecture.scm), and I am having a heck of a time trying to debug it. The code looks ...
3
votes
1answer
158 views

SICP car/cdr practice question problem

I'm trying out this "online tutor" for SICP here: http://icampustutor.csail.mit.edu/6.001-public/tutor.cgi?op=registration-page I'm looking at the following question: Assume that we have already ...
3
votes
1answer
293 views

Does the DrRacket interpreter use normal-order evaluation based on SICP Exercise 1.5?

One must decide, based on the value of: (test 0 (p)) where test is defined as : (define (test x y) (if (= x 0) 0 y)) and p is defined as : (define (p) (p)) When I evaluate ...
3
votes
2answers
189 views

Why does average damping magically speed up the convergence of fixed-point calculators?

I'm reading through SICP, and the authors brush over the technique of average damping in computing the fixed points of functions. I understand that it's necessary in certain cases, ie square roots in ...
3
votes
3answers
296 views

using lambda instead of let in scheme

In SICP 1.2.1 there is a function that makes a rational number, as follow: (define (make-rat n d) (let ((g (gcd n d))) (cons (/ n g) (/ d g)))) I'm just curious how you can implement the same ...
3
votes
1answer
611 views

DrScheme versus mzscheme: treatment of definitions

One long term project I have is working through all the exercises of SICP. I noticed something a bit odd with the most recent exercise. I am testing a Huffman encoding tree. When I execute the ...
2
votes
2answers
99 views

The implement of mutex in SICP Section 3.4

When the authors implement the mutex part of serializers, they use a list called cell. But the list only contains one element, so why not just use a variable?
2
votes
2answers
87 views

Including an r5rs file into another file in racket

One of my courses is using DrRacket for some sections of SICP. We're working on the metacircular evaluator and I have an R5RS code file (set-car! and set-cdr!) which I need to use with my work. ...
2
votes
2answers
70 views

Send code to scheme interpreter from info buffer

I want to study SICP in my Emacs. I've installed MIT Scheme, Emacs 24 and downloaded sicp info (using this guide http://www.pchristensen.com/blog/articles/setting-up-and-using-emacs-infomode/). Now ...
2
votes
1answer
103 views

SICP Video Lecture 2

I have a problem with this example (define (+ x y) (if (= x 0) y (+ (-1+ x) (1+ y)))) What is the problem with -1+ and 1+, when i evaluate it i get this result DrScheme: -1+: this ...
2
votes
4answers
222 views

I want to implement a scheme interpreter for studying SICP

I'm reading the book Structure and Interpretation of Computer Programs, and I'd like to code a scheme interpreter gradually. Do you knows the implementation of the scheme most easy to read (and ...
2
votes
4answers
208 views

python delayed execution

To implement streams as delayed lists in Lisp it's recommended to use Lisp macros. (defmacro cons-stream (a b) (cons ,a (delay ,b))) (defmacro delay (expr) `(memo-proc (lambda () ,expr))) ...

1 2