0
votes
1answer
53 views
the difference between if and cond?
i'm learning sicp now and do the ex2.23
i have wrirten the following code:
(define (for-each proc items)
(if (null? items)
#t
((proc (car items))
(for-each proc (cdr …
0
votes
1answer
84 views
Pros and cons of MIT Scheme and DrScheme to study SICP?
All,
In your mind, what are the pros and cons of using MIT Scheme versus DrScheme, in the context of trying to go through SICP (presumably simultaneously to watching some / all the MIT 6.001 videos)? …
4
votes
2answers
116 views
SICP 1.31: Approximating Pi
Hello-
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 …
2
votes
1answer
71 views
SICP exercise 1.16, where is my bug, because it looks right to me
I've just started working through this book for fun; I wish it were homework, but I could never afford to attend MIT, and there are tons of people smarter than me anyway. :p
fast-exp is supposed to …
0
votes
4answers
93 views
Should one just read SICP and not solve problems?
Hi,
I am enjoying reading Structure and Interpretation of Computer Programs. But I find exercises to be a blocker. They take lot of time to do, especially in chapter 1-2.Should I just read SICP in one …
2
votes
1answer
143 views
SICP making change
So; I'm a hobbiest 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; …
1
vote
1answer
69 views
Quotation in Scheme
Following is a exercise from SICP. I couldn't figure it out on my own. Can some why help me understand?
Type following code into interpreator:
(car ''abracadabra)
And it print out 'quote'. Why?
1
vote
2answers
112 views
Is IronScheme suitable for working through SICP?
Will there be any incompatibilities with the code in SICP if I use IronScheme?
0
votes
3answers
216 views
I can’t find my error in this Scheme program for calculate PI
I am doing a Monte Carlo experiment to calculate an approximation of PI. From SICP:
The Monte Carlo method consists of
choosing sample experiments at random
from a large set and then making
…
8
votes
2answers
221 views
Seemingly unnecessary case in the unification algorithm in SICP
Hi guys,
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 "*") …
1
vote
4answers
105 views
How do I include files in DrScheme?
I'm using DrScheme to work through SICP, and I've noticed that certain procedures (for example, square) get used over and over. I'd like to put these in a separate file so that I can include them in …
2
votes
3answers
126 views
What’s the explanation for Exercise 1.4 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.4 for a couple of days and I just can't seem to figure it out. This is the one …
0
votes
6answers
165 views
Small SICP/Scheme question (local state)
I'm actually reading the book for fun but it might be considered homework. At any event, I don't feel comfortable with local state variables at all with this language... Take for example this code:
…
6
votes
5answers
404 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?
0
votes
1answer
39 views
sicp section 4.1.6
I need some help in understanding the material in SICP's section 4.1.6 on Internal definitions.
I understand the problem raised when mutually recursive functions are defined. But i dont understand …
