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.
2
votes
2answers
39 views
How to express let* as a lambda expression (not the regular let)
I have a scheme related question, how can we implement let* as a lambda expression. To be more precise, I am not wondering about the "regular" let, but the let with * which lets us use one let ...
1
vote
3answers
80 views
find all ordered triples of distinct positive integers i, j, and k less than or equal to a given integer n that sum to a given integer s
this is the exercise 2.41 in SICP
I have wrote this naive version myself:
(defn sum-three [n s]
(for [i (range n)
j (range n)
k (range n)
:when (and (= s (+ i j k))
...
5
votes
1answer
192 views
Functional Programming: a look at program design from the top down? [closed]
I've scoured the internet trying to learn as much about FP as possible to see how well the paradigm suits me. All the examples I find are minimally helpful because they talk about FP in the small. I ...
0
votes
2answers
82 views
seek for some explanation on SICP exercise 1.5
The question can be found here.
In the book, I found one description of normal order evaluation was:
"An alternative evaluation model would not evaluate the operands until their values were needed. ...
-3
votes
2answers
61 views
Scheme tree map
Write n analogous function (maptree f t) that returns a tree made by applying the function f to each entry of the binary tree t. (Just like map) Since the tree is a data abstraction, only the ...
2
votes
1answer
58 views
Memoization during delayed evaluation
The book Structure and Interpretation of Computer Programs introduces a memoizing procedure as follows:
(define (memo-proc proc)
(let ((already-run? false) (result false))
(lambda ()
(if ...
2
votes
1answer
46 views
Procedure works as intended but error message still shows up
I've been attempting to learn programming with the book "Structures and Interpretation of Computer Programs. To do the exercises I've been using DrRacket (I couldn't find a scheme interpreter for ...
1
vote
2answers
103 views
Why does this return a list '(5) rather than the number 5?
I am working through SICP, and the exercise I am working on asks for a procedure that returns the last element in a list. I implemented the procedure last-pair to do this, but I'm confused why it's ...
1
vote
1answer
59 views
How transform-painter works in the picture language in SICP
In the picture language in SICP I'm having trouble understanding how the transform-painter procedure works:
(define (transform-painter painter origin corner1 corner2)
(lambda (frame)
(let ((m ...
2
votes
2answers
62 views
How frames are used in the picture language in SICP
I can't seem to get my head around the implementation of frames in SICP.
The book states
We will use coordinates in the unit square (0< x,y< 1) to specify images
How are images expressed ...
2
votes
1answer
86 views
Stuck SICP Exercise 1.1.7 in Javascript
I've decided to try working through the MIT SICP course, but in Javascript.
The following code outputs undefined, but it should output a fairly accurate guess of the square root of 5.
I've tested ...
1
vote
2answers
149 views
What does squaring a transformation mean?
I am trying to understand a solution that I read for an exercise that defines a logarithmic time procedure for finding the nth digit in the Fibonacci sequence. The problem is 1.19 in Structure and ...
1
vote
2answers
77 views
Error: Can't bind name in null syntactic environment
I'm currently going through exercise 1.3 of the sicp book. Here's the description of the problem:
Define a procedure that takes three numbers as arguments and returns
the sum of the squares of ...
3
votes
2answers
110 views
Tracing lambda expression evaluation
I am having trouble with some tricky-looking lambda expressions in Scheme, and I would like to see how they are being evaluated by the interpreter.
I would like the Scheme interpreter to print all ...
7
votes
2answers
100 views
How to use scheme macros to show evaluation tree
I modified the code for the count-change function in SICP so that it would display a pair whenever the function recurses. The pair is of the form "(cc a k)" -> "(cc a (- k 1))" or "(cc a k)" -> ...
2
votes
1answer
93 views
how is the sicp cons-stream implemented?
I'm working through the streams section of the scip and am stuck on how to define a stream.
The following is my code:
(define (memo-func function)
(let ((already-run? false)
(result ...
0
votes
1answer
112 views
SICP Exercise 2.19 - how to extend this?
I am just exploring functional programming via SICP, and am wondering how I can extend Exercise 2.19 to do something more useful (and which seems to require side-effects).
The exercise involves a ...
3
votes
2answers
129 views
Streams in Scheme - define integers through stream map in scheme
How can I define integers through stream-map in Scheme:
(define integers (stream-cons 1 (stream-map *something* *something*))
4
votes
1answer
141 views
Writing a Scheme interpreter with FPC: Allocation and Pointers
Being a historian, writing a Scheme interpreter in FPC turns already in the first stage out to be a serious task for me. :) I am following the blog of Peter Michaux, who showed how to do it in C ...
3
votes
2answers
196 views
Writing a Scheme interpreter with FPC: Recursive data structures
Essentially, this is a question about recursive data structures in Pascal (FPC). As I would like to implement a Scheme interpreter like it is shown in SICP chapter 4, this question may be relevant for ...
2
votes
1answer
126 views
SICP 2.16 interval-arithmetic (scheme)
This isn't a homework question, I'm just left unsatisfied with my understanding of interval arithmetic and the implications of exercise 2.16.
The interval arithmetic defined by section 2.14 does not ...
2
votes
1answer
79 views
SICP Exercise 4.54
I have a question about Exercise 4.54 from Section 4.3.3 of Structure and Interpretation of Computer Programs (http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-28.html#%_sec_4.3.3). This exercise ...
0
votes
1answer
79 views
How to make output in mit-scheme less verbose when it's used for running script
I've found this question where people recommend to use mit-scheme for solving exercises from SICP. After doing some python and ruby I'm wondering is it possible to use mit-scheme interpreter/compiler ...
1
vote
1answer
200 views
Running code from SICP section 3.5.4 with DrRacket
I'm having trouble running an example code from SICP (Structure and Interpretation of Computer Programs) Section 3.5.4 (Streams and Delayed Evaluation); the SICP section can be found here: ...
3
votes
5answers
174 views
Count amount of odd numbers in a sentence
I am fairly new to lisp and this is one of the practice problems.
First of all, this problem is from simply scheme. I am not sure how to answer this.
The purpose of this question is to write the ...
2
votes
2answers
70 views
What's the relationship between streamjs and linqjs
After reading SICP, I recently discovered streamjs. The developer referenced linqjs as an alternate implementation with different syntax, but I can't make the connection. How do the methods in ...
5
votes
3answers
264 views
Compiling SICP Picture Exercises in DrRacket?
I am going through SICP as a self-study and am on the picture language section in Chapter 2. I have been using DrRacket for the earlier exercises, but I get compilation errors when trying to do an ...
2
votes
2answers
176 views
implement parallel execute in scheme
In SICP section 3.4 (serializers in scheme) on Currency there is a procedure called parallel-execute that is described but not implemented in MIT scheme. I wonder if anyone has actually implemented ...
0
votes
2answers
72 views
Scheme if pair end with a space char,the result will have one dot between two element
if pair end with a space char,
why result value contains one dot(.)?
what does this dot(.) mean?
(cons 1 2 )
;Value 2: (1 . 2)
(car (cons 1 2 ))
;Value: 1
(cdr (cons 1 2 ))
;Value: 2
this one ...
0
votes
1answer
139 views
Defining multiple local functions with “let over lambda” form in Scheme
I was curious about defining multiple lexically scoped functions in Scheme that can call each other. Working in SICP, I produced the following function using block structure to solve Exercise 1.8 ...
1
vote
1answer
189 views
Does Racket support internal “define”?
I'm new to functional language and I'm doing SICP programming assignments using Racket.
Below is a snippet of code, and Racket informs me that define: expected only one expression for the function ...
1
vote
1answer
291 views
Prerequisite for SICP
I have been programming in a "learn-by-doing" fashion for almost 2 years now and I consider myself fairly good however, I really wish to build a good foundation of Computer Science/Computer ...
1
vote
2answers
160 views
Can someone explain how recursion works in these procedures
This is using MIT Scheme, coming from the infamous SICP. I just can't wrap my head around what is happening.
Here's a procedure to compute N!.
(define (factorial n)
(if (= n 0)
1
...
0
votes
1answer
114 views
Scheme streams of matrices
I would like to have a stream in scheme that holds a bunch of matrices that have a certain order.
The stream-car of this stream would be the matrix [1 6 0 3]; that is, row 1 col 1 is 1, row 1 col 2 ...
2
votes
2answers
127 views
One example in SICP
This is an example in SICP, I enter it but it has an error.
(define (sum term a next b)
(if (> a b)
0
(+ (term a)
(sum term (next a) next b))))
This is the error:
...
2
votes
1answer
190 views
Are the video lectures worth watching if I plan to go through the whole SICP book [closed]
After I began to follow the "Functional Programming Principles in Scala" course on coursera (btw, you can find the feedback about this course on Quroa), in which part of the teaching materials are ...
2
votes
1answer
159 views
Lexical vs dynamic scoping in terms of SICP's Environment Model of Evaluation
In Section 3.2.2 of SICP the execution of the following piece of code
(define (square x)
(* x x))
(define (sum-of-squares x y)
(+ (square x) (square y)))
(define (f a)
(sum-of-squares (+ a 1) ...
1
vote
1answer
80 views
What is the convention for returning a side-effect in Scheme?
I'm going through the Structure and Interpretation of Computer Programs MIT video lecture series, and I had a quick question about returning side-effects from functions.
In video 3A, the professor ...
6
votes
2answers
185 views
Scheme: Procedures that return another inner procedure
This is from the SICP book that I am sure many of you are familiar with. This is an early example in the book, but I feel an extremely important concept that I am just not able to get my head around ...
1
vote
2answers
62 views
Is there any way to use a list to represent procedure in a lambda caculus?
There is a simple language called lambda calculus, which is a subset of scheme. It has only 4 expressions in the following.
exp : n (1 2 3)
varref (variable reference)
(lambda (x) body) (this is a ...
3
votes
2answers
198 views
Racket Lisp : comparison between new-if and if
(define (sqrt-iter guess x)
(if (good-enough? guess x)
guess
(sqrt-iter(improve guess x)
x)))
(define (improve guess x)
(average guess(/ x guess)))
(define ...
1
vote
2answers
59 views
SICP 5.2 Assembler
I've been reading through chapter 5 of sicp and have gotten stuck on a piece of code--namely, the assembler presented in 5.2. This is what it looks like:
(define (extract-labels text receive)
(if ...
3
votes
2answers
127 views
SICP exercise 1.5 and 1.6
In addition to question What's the explanation for Exercise 1.6 in SICP?.
So Dr. Racket (R5RS) evaluates sqrt-iter function with "if" in finite time, clearly showing normal order evaluation. But ...
-1
votes
2answers
141 views
SICP 2.42 eight queens. Help check what's wrong with my code?
The program is to generate all possible results of eight queens.
I use a list which cotains row numbers as the data structure.
But when I run it, I got wrong results.
Here is my Code:
(define (queens ...
1
vote
1answer
115 views
MIT-Scheme: Different Behavior on Infinite Loop Depending on Numbers
I was working on the solution of the exercise 1.6 of the SICP book when I saw two different behaviors when I run the code depending on the numbers that I used.
If I use natural numbers when I call ...
2
votes
2answers
160 views
SICP exercise 1.37: My iterative solution got the right answer but got wrong in 1.38
My iterative solution to SICP 1.37 is
(define (con-frac n d k)
(define (iter i result)
(if (= 1 i)
result
(iter (- i 1) (/ (n i) (+ (d i) result)))))
(iter k (/ (n k) (d k))))
...
0
votes
1answer
196 views
Getting Edwin to open Scheme file correctly with C-x C-f
I am learning SICP. I'm using Edwin 3.116 that installed with MIT-Scheme on my Windows 7 (32-bit) / AMD (64-bit) machine.
For the life of me I have not been able to discover why Edwin is unable to ...
0
votes
1answer
77 views
SICP Types and Variables
This is from the MIT 6.001 Online Tutor, it's part of the third problem set.
Question: Indicate the type of each of the following expressions. If you need type variables, use A,B,C, etc., starting ...
3
votes
1answer
320 views
What are the pre-conditions of reading SICP? [closed]
right now i have got suggestions like "Simply scheme" and "The little schemer".
what others are available?
1
vote
4answers
130 views
In SICP, it says that in C memory consumption goes up even when recursive calls are actually iterative. why?
The original words are
One reason that the distinction between process and procedure may be confusing is that most implementations of common languages (including Ada, Pascal, and C) are designed ...


