4
votes
9answers
400 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
5answers
1k 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?
2
votes
6answers
241 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 …
0
votes
1answer
70 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
118 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)? …
5
votes
2answers
128 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
75 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
102 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 …
1
vote
4answers
114 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
1answer
147 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; …
8
votes
2answers
237 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
2answers
118 views
Is IronScheme suitable for working through SICP?
Will there be any incompatibilities with the code in SICP if I use IronScheme?
4
votes
6answers
356 views
Structure and Interpretation of Computer Programs, what level of maths ability is required?
Hi there,
I regrettably haven't studied maths 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 this book?
What kind of maths …
1
vote
1answer
70 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?
0
votes
3answers
220 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
…
