0
votes
0answers
13 views
SICP exercise 1.19
It's a procedure to genearate the fibonacci numbers, here is the reference: http://sicp.org.ua/sicp/Exercise1-19
it's said that we can consider the procedure as "a <- bq + aq + ap and b <- bp …
0
votes
1answer
78 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
146 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
129 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
78 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 …
2
votes
1answer
150 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
5answers
127 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 …
0
votes
4answers
105 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 …
8
votes
2answers
243 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
1answer
71 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
223 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
…
4
votes
9answers
411 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 …
4
votes
6answers
363 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
2answers
122 views
Is IronScheme suitable for working through SICP?
Will there be any incompatibilities with the code in SICP if I use IronScheme?
6
votes
5answers
439 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?
