active questions tagged sicp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T02:25:53Z http://stackoverflow.com/feeds/tag/sicp http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1207648/how-do-i-include-files-in-drscheme 1 How do I include files in DrScheme? Alex Basson 2009-07-30T16:11:42Z 2009-12-16T22:15:55Z <p>I'm using DrScheme to work through SICP, and I've noticed that certain procedures (for example, <code>square</code>) get used over and over. I'd like to put these in a separate file so that I can include them in other programs without having to rewrite them every time, but I can't seem to figure out how to do this.</p> <p>I've tried:</p> <pre><code>(load filename) (load (filename)) (load ~/path-to-directory/filename) (require filename) (require ~/path-to-directory/filename) (require path-from-root/filename) </code></pre> <p>None of these works. Obviously I'm grasping at straws -- any help is much appreciated.</p> http://stackoverflow.com/questions/1896974/sicp-exercise-1-19 0 SICP exercise 1.19 Kevin xue 2009-12-13T16:29:29Z 2009-12-13T16:29:29Z <p>It's a procedure to genearate the fibonacci numbers, here is the reference: <a href="http://sicp.org.ua/sicp/Exercise1-19" rel="nofollow">http://sicp.org.ua/sicp/Exercise1-19</a> </p> <p>it's said that we can consider the procedure as "a &lt;- bq + aq + ap and b &lt;- bp + aq".My question is how the auther(or someone else) think out this good idea?Has it to be this form?</p> http://stackoverflow.com/questions/161666/sicp-exercise-1-3-request-for-comments 4 SICP Exercise 1.3 request for comments ashitaka 2008-10-02T10:23:31Z 2009-12-10T14:11:49Z <p>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 on how I can improve my solution.</p> <pre><code>(define (big x y) (if (&gt; x y) x y)) (define (p a b c) (cond ((&gt; a b) (+ (square a) (square (big b c)))) (else (+ (square b) (square (big a c)))))) </code></pre> http://stackoverflow.com/questions/260685/what-is-the-best-scheme-implementation-for-working-through-sicp 6 What is the best Scheme implementation for working through SICP? Joel McCracken 2008-11-04T02:52:31Z 2009-12-05T12:50:22Z <p>I have been using <a href="http://www.plt-scheme.org/" rel="nofollow">PLT Scheme</a>, but it has some issues. Does anyone know of a better implementation for working through SICP?</p> http://stackoverflow.com/questions/529469/htdp-vs-concrete-abstractions-vs 2 HtDP vs. Concrete Abstractions vs. ? Cena 2009-02-09T19:16:31Z 2009-11-30T10:54:59Z <p>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 recommendations for books that teach how to think about programming, rather than focusing on a particular language. I've already determined that SICP is out of my league for now.</p> <p>The two primary alternatives appear to be <em>How to Design Programs</em> and <em>Concrete Abstractions</em>. I'd be interested in hearing from anyone who has used either, or both, with specific discussion on why one might be preferable to the other. Also, if someone could recommend a basic course of study using freely available materials, that would be great. Something like: start with HtDP->SICP->?</p> <p>Thanks for your time.</p> http://stackoverflow.com/questions/1787851/the-difference-between-if-and-cond 0 the difference between if and cond? Vincent 2009-11-24T04:47:52Z 2009-11-24T05:17:04Z <p>i'm learning sicp now and do the ex2.23 i have wrirten the following code:</p> <pre><code>(define (for-each proc items) (if (null? items) #t ((proc (car items)) (for-each proc (cdr items))))) </code></pre> <p>but when running, cause error: <strong>procedure application: expected procedure, given: #; arguments were: ()</strong></p> <p>i think i know the reason: I call the for-each function recursively, every called for-each wanted to return value</p> <p>but when i have modified the code:</p> <pre><code>(define (for-each proc items) (cond ((null? items) #t) (else (proc (car items)) (for-each proc (cdr items))))) </code></pre> <p>it runs well. I don't understand, why? in <strong>cond</strong>, does every called for-each no need to return value?</p> <p>i used DrScheme, and choose language <a href="http://www.neilvandyke.org/sicp-plt/" rel="nofollow">SICP</a></p> <p>i'm not a native speaker of english, so if there is sth which isn't described clearly, pls tell me</p> http://stackoverflow.com/questions/1749424/pros-and-cons-of-mit-scheme-and-drscheme-to-study-sicp 0 Pros and cons of MIT Scheme and DrScheme to study SICP? JDelage 2009-11-17T14:57:22Z 2009-11-22T15:14:51Z <p>All,</p> <p>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)? </p> <p>Please feel free to edit below: </p> <p>MIT Scheme pros:<br> - Specifically built for SICP and MIT 6.001.<br> MIT Scheme cons:</p> <p>DrScheme pros:<br> - Wider-spread usage, more active community.<br> DrScheme Cons: </p> http://stackoverflow.com/questions/1695351/sicp-1-31-approximating-pi 5 SICP 1.31: Approximating Pi gregsabo 2009-11-08T04:15:25Z 2009-11-08T05:29:11Z <p>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.</p> <pre><code>(define (approx-pi acc) (define (factors a) (define basic-num (if (= (mod a 2) 0) (/ a 2) (/ (- a 1) 2))) (if (= (mod basic-num 2) 0) basic-num (/ 1 basic-num))) (* 4 (product factors 5 (* 2 acc)))) </code></pre> <p>Here are the mod and product procedures that are referenced in this code. These don't seem to be the problem but I'll include them just in case.</p> <pre><code>(define (product func lo hi) (define (product-iter i result) (if (&gt; i hi) result (product-iter (+ 1 i) (* result (func i))))) (product-iter 1 1)) (define (mod a b) (if (&lt; (- a b) 0) a (mod (- a b) b))) </code></pre> <p>The whole thing is an implementation of the formula:</p> <p>pi / 4 = (2 * 4 * 4 * 6 ...) / (3 * 3 * 5 * 5 ... )</p> <p>My mistake is obviously something pretty stupid, but I'm new to Scheme so I can't find it. If anyone has any stylistic tips, I'd really appreciate that, too. Thanks!</p> http://stackoverflow.com/questions/1643518/sicp-exercise-1-16-where-is-my-bug-because-it-looks-right-to-me 2 SICP exercise 1.16, where is my bug, because it looks right to me Dave 2009-10-29T12:54:49Z 2009-10-31T18:34:25Z <p>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</p> <p>fast-exp is supposed to find b^n, i.e. 4^2 = 16, 3^3 = 27</p> <pre><code>(define (fast-exp b n) (define (fast-exp-iter n-prime a) (cond ((= n-prime 1) a) ((= (remainder n-prime 2) 1) (fast-exp-iter (- n-prime 1) (* a b))) (else (fast-exp-iter (/ n-prime 2) (* a b b))))) (fast-exp-iter n 1)) fast-exp 4 2; Expected 16, Actual 2 </code></pre> http://stackoverflow.com/questions/1561496/should-one-just-read-sicp-and-not-solve-problems 0 Should one just read SICP and not solve problems? jack 2009-10-13T16:48:48Z 2009-10-13T17:48:33Z <p>Hi, I am enjoying reading <a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">Structure and Interpretation of Computer Programs</a>. 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 go, and not solve the problems? Did anyone of you faced same problem? My feeling is that doing exercises helps to understand concepts better. But, some exercises which are maths oriented can be left out.</p> http://stackoverflow.com/questions/1485022/sicp-making-change 2 SICP making change RyanD 2009-09-28T01:28:23Z 2009-09-28T02:16:42Z <p>So; I'm a hobbiest who's trying to work through SICP (<a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">it's free!</a>) and there is an example procedure in the first chapter that is meant to count the possible ways to make change with american coins; (change-maker 100) => 292. It's implemented something like:</p> <pre><code>(define (change-maker amount) (define (coin-value n) (cond ((= n 1) 1) ((= n 2) 5) ((= n 3) 10) ((= n 4) 25) ((= n 5) 50))) (define (iter amount coin-type) (cond ((= amount 0) 1) ((or (= coin-type 0) (&lt; amount 0)) 0) (else (+ (iter amount (- coin-type 1)) (iter (- amount (coin-value coin-type)) coin-type))))) (iter amount 5)) </code></pre> <p>Anyway; this is a tree-recursive procedure, and the author "leaves as a challenge" finding an iterative procedure to solve the same problem (ie fixed space). I have not had luck figuring this out or finding an answer after getting frustrated. I'm wondering if it's a brain fart on my part, or if the author's screwing with me.</p> http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp 8 Seemingly unnecessary case in the unification algorithm in SICP Paul Hollingsworth 2009-08-04T19:56:57Z 2009-09-17T12:35:43Z <p>Hi guys, I'm trying to understand the unification algorithm described in SICP <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-29.html#%%5Fsec%5F4.4.4" rel="nofollow">here</a></p> <p>In particular, in the procedure "extend-if-possible", there's a check (the first place marked with asterix "*") which is checking to see if the right hand "expression" is a variable that is already bound to something in the current frame:</p> <pre><code>(define (extend-if-possible var val frame) (let ((binding (binding-in-frame var frame))) (cond (binding (unify-match (binding-value binding) val frame)) ((var? val) ; *** why do we need this? (let ((binding (binding-in-frame val frame))) (if binding (unify-match var (binding-value binding) frame) (extend var val frame)))) ((depends-on? val var frame) 'failed) (else (extend var val frame))))) </code></pre> <p>The associated commentary states:</p> <p>"In the first case, if the variable we are trying to match is not bound, but the value we are trying to match it with is itself a (different) variable, it is necessary to check to see if the value is bound, and if so, to match its value. If both parties to the match are unbound, we may bind either to the other."</p> <p>However, I cannot think of a case where this is actually necessary.</p> <p>What's it's talking about, I <em>think</em>, is where you might have the following frame bindings currently present:</p> <pre><code>{?y = 4} </code></pre> <p>And are then asked to "extendIfPossible" a binding from ?z to ?y.</p> <p>With that "*" check present, when asked to extend "?z" with "?y", we see that "?y" is already bound to 4, and then recursively try to unify "?z" with "4", which results with us extending the frame with "?z = 4".</p> <p>Without the check, we would end up extending the frame with just "?z = ?y". But in both cases, so long as ?z is not already bound to something else, I don't see the problem.</p> <p>Note, if ?z <em>had</em> already been bound to something else then the code doesn't reach the part marked "*" (we would have already recursed to unifying with what ?z had already been matched to).</p> <p>After thinking it over, I have realised that there might be some sort of argument for generating a "simplest" MGU (Most General Unifier). e.g. you might want an MGU with a minimal number of variables referring to other variables... that is, we'd rather generate the substitution {?x = 4, ?y = 4} than the substitution {?x = ?y, ?y = 4}... but I don't think this algorithm would guarantee this behaviour in any case, because if you asked it to unify "(?x 4)" with "(?y ?y)" then you would still end up with {?x = ?y, ?y = 4}. And if the behaviour can't be guaranteed, why the additional complexity?</p> <p>Is my reasoning here all correct? If not, what's a counter example where the "*" check is necessary to generate a <em>correct</em> MGU?</p> http://stackoverflow.com/questions/1386079/is-ironscheme-suitable-for-working-through-sicp 1 Is IronScheme suitable for working through SICP? Tommy 2009-09-06T16:38:04Z 2009-09-13T04:52:20Z <p>Will there be any incompatibilities with the code in SICP if I use IronScheme?</p> http://stackoverflow.com/questions/918119/structure-and-interpretation-of-computer-programs-what-level-of-maths-ability-is 4 Structure and Interpretation of Computer Programs, what level of maths ability is required? bplus 2009-05-27T21:33:18Z 2009-09-11T21:54:22Z <p>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 standard is expected of the reader?</p> <p>Thanks in advance for any replies!</p> http://stackoverflow.com/questions/1405121/quotation-in-scheme 1 Quotation in Scheme Huan Zhou 2009-09-10T12:55:18Z 2009-09-10T13:25:26Z <p>Following is a exercise from SICP. I couldn't figure it out on my own. Can some why help me understand?</p> <p>Type following code into interpreator:</p> <pre><code>(car ''abracadabra) </code></pre> <p>And it print out 'quote'. Why?</p> http://stackoverflow.com/questions/1318664/i-cant-find-my-error-in-this-scheme-program-for-calculate-pi 0 I can't find my error in this Scheme program for calculate PI Castro 2009-08-23T14:09:17Z 2009-08-23T19:10:18Z <p>I am doing a Monte Carlo experiment to calculate an approximation of PI. From SICP:</p> <blockquote> <p>The Monte Carlo method consists of choosing sample experiments at random from a large set and then making deductions on the basis of the probabilities estimated from tabulating the results of those experiments. For example, we can approximate using the fact that 6/pi^2 is the probability that two integers chosen at random will have no factors in common; that is, that their greatest common divisor will be 1. To obtain the approximation to , we perform a large number of experiments. In each experiment we choose two integers at random and perform a test to see if their GCD is 1. The fraction of times that the test is passed gives us our estimate of 6/pi^2, and from this we obtain our approximation to pi.</p> </blockquote> <p>But when I run my program I obtain values like 3.9...</p> <p>Here is my program:</p> <pre><code>(define (calculate-pi trials) (define (this-time-have-common-factors?) (define (get-rand) (+ (random 9999999999999999999999999999999) 1)) (= (gcd (get-rand) (get-rand)) 1)) (define (execute-experiment n-times acc) (if (&gt; n-times 0) (if (this-time-have-common-factors?) (execute-experiment (- n-times 1) acc) (execute-experiment (- n-times 1) (+ acc 1))) acc)) (define n-success (execute-experiment trials 0)) (define prob (/ n-success trials)) (sqrt (/ 6 prob))) </code></pre> <p>My interpreter is MIT/GNU 7.7.90 </p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1169825/small-sicp-scheme-question-local-state 0 Small SICP/Scheme question (local state) ooboo 2009-07-23T05:49:54Z 2009-07-30T13:00:21Z <p>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:</p> <pre><code>(define flip (let ((count 0)) (lambda () (if (= 0 count) (begin (set! count 1) count) (begin (set! count 0) count))))) </code></pre> <p>why does this code alternate between 1 and 0? count is given the value of 0 every time this function is called! A python equivalent would be:</p> <pre><code>class Flip: def __init__(self): pass def __call__(self): count = 0 if count == 0: count = 1 return count else: count = 0 return count </code></pre> <p>This returns the same thing every time. I'm confused...</p> http://stackoverflow.com/questions/1171252/whats-the-explanation-for-exercise-1-4-in-sicp 2 What's the explanation for Exercise 1.4 in SICP? Alex Basson 2009-07-23T11:53:13Z 2009-07-23T13:04:57Z <p>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 where Alyssa re-defines <code>if</code> in terms of <code>cond</code>, like so:</p> <pre><code>(define (new-if predicate then-clause else-clause) (cond (predicate then-clause) (else else-clause)) </code></pre> <p>She tests it successfully on some simple cases, and then uses it to re-write the square root program (which worked just fine with <code>if</code>):</p> <pre><code>(define (sqrt-iter guess x) (new-if (good-enough? guess x) guess (sqrt-iter (improve guess x) x))) </code></pre> <p>The question then asks: "What happens when Alyssa attempts to use this to compute square roots? Explain." [If necessary, I'm happy to reproduce the other procedures (<code>good-enough?</code>, <code>improve</code>, etc.), just let me know.]</p> <p>Now, I know what happens: it never returns a value, which means that the program recurs (executes recursively? What's the verb form of "recursive"?) infinitely. I just can't explain why this happens. Whatever subtle difference exists between <code>if</code> and <code>new-if</code> is eluding me. Any and all help much appreciated.</p> http://stackoverflow.com/questions/1159208/can-i-use-common-lisp-for-sicp-or-is-scheme-the-only-option 6 Can I use Common Lisp for SICP or is Scheme the only option? akway 2009-07-21T13:34:07Z 2009-07-23T01:47:49Z <p>Also, even if I can use Common Lisp, should I? Is Scheme better?</p> http://stackoverflow.com/questions/971074/sicp-section-4-1-6 0 sicp section 4.1.6 Pranav 2009-06-09T16:14:39Z 2009-06-09T16:31:13Z <p>I need some help in understanding the material in SICP's section 4.1.6 on Internal definitions.</p> <p>I understand the problem raised when mutually recursive functions are defined. But i dont understand how it is solved by transforming the following lambda expression </p> <pre><code>(lambda &lt;vars &gt; (define u &lt;e1 &gt;) (define v &lt;e2 &gt;) &lt;e3 &gt;) </code></pre> <p>into:</p> <pre><code>(lambda &lt;vars &gt; (let ((u ’*unassigned*) (v ’*unassigned*)) (set! u &lt;e1 &gt;) (set! v &lt;e2 &gt;) &lt;e3 &gt;)) </code></pre> <p>Can someone help me out here? Thanks. </p> http://stackoverflow.com/questions/939582/which-language-in-drscheme-for-sicp 2 Which language in DrScheme for SICP? kunjaan 2009-06-02T13:35:44Z 2009-06-03T05:21:55Z <p>Hi, I have been using the Module for SICP in DrScheme 4.2 but which language has the best support for SICP in DrScheme? </p> <p>Has anyone here tried <a href="http://planet.plt-scheme.org/display.ss?package=sicp.plt&amp;owner=neil" rel="nofollow">this</a>?</p> <p>Thanks.</p> http://stackoverflow.com/questions/919107/which-programming-book-did-you-read-right-after-sicp 0 Which programming book did you read right after SICP? Pranav 2009-05-28T03:53:06Z 2009-05-28T04:17:25Z <p>Am going to start EOPL - Essentials of programming languages. Reading SICP has sparked an interest in programming language design. What did it do for you? </p> http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp 13 Which language would you use for the self-study of SICP? Alan 2008-10-27T03:41:28Z 2009-05-08T08:43:31Z <p>I've caught the bug to learn functional programming for real. So my next self-study project is to work through the <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Programs</a>. Unfortunately, I've never learned Lisp, as I was not a CS major in college. </p> <p>While SICP does not emphasize the tools for programming, doing the exercises entails picking a Lisp-like language to use. It seems like some implementation of <a href="http://plt-scheme.org/" rel="nofollow">Scheme</a> would be the path of least resistance. On the other hand, I hear of others who have used <a href="http://gigamonkeys.com/book/" rel="nofollow">Common Lisp</a> and <a href="http://clojure.org" rel="nofollow">Clojure</a>. It seems to me that Common Lisp or Clojure would be more likely to be used in production code, and therefore slightly better for my resume. BTW, I fully get the argument that learning a language is worthwhile for its own sake, but learning a language that helps my resume is still a benefit. I'm a capitalist and an academic about my learning.</p> <p>If you had to self-study SICP, which language would you pick and why? Ideally, I would like to use a language that can run on the JVM. I can certainly work with a language where REPL works with bash and emacs.</p> <p>ADDITION: have any of you tried reading SICP without using Scheme? If so, what was your experience like?</p> http://stackoverflow.com/questions/826712/how-do-i-invoke-scheme-number-functions-from-sicp 0 How do i invoke Scheme number functions from SICP Leonard 2009-05-05T20:10:33Z 2009-05-05T20:59:31Z <p>In SICP, (ex 2.6) the following functions are described as ways of 'getting by without numbers'. I'm scratching trying to understand this. As a starting point, how do these functions get invoked? Can I actually apply them in some way where the output will be 1? (Or any other number?)</p> <pre><code>(define zero (lambda (f) (lambda (x) x))) (define (add-1 n) (lambda (f) (lambda (x) (f ((n f) x))))) </code></pre> <p>My initial attempts haven't been successful: </p> <pre><code>Welcome to DrScheme, version 4.1.5 [3m]. Language: Simply Scheme; memory limit: 128 megabytes. &gt; (add-1 (zero)) . . procedure zero: expects 1 argument, given 0 &gt; (add-1 zero) #&lt;procedure&gt; &gt; (add-1 1) #&lt;procedure&gt; &gt; ((add-1 1)) . . #&lt;procedure&gt;: expects 1 argument, given 0 &gt; </code></pre> http://stackoverflow.com/questions/771013/how-to-improve-this-piece-of-code 2 How to improve this piece of code? Amit 2009-04-21T04:15:35Z 2009-04-22T08:47:12Z <p>My solution to <a href="http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%%5Fsec%5F1.2.2" rel="nofollow">exercise 1.11</a> of SICP is:</p> <pre><code>(define (f n) (if (&lt; n 3) n (+ (f (- n 1)) (* 2 (f (- n 2))) (* 3 (f (- n 3)))) )) </code></pre> <p>As expected, a evaluation such as (f 100) takes a long time. I was wondering if there was a way to improve this code (without foregoing the recursion), and/or take advantage of multi-core box. I am using 'mit-scheme'.</p> http://stackoverflow.com/questions/712905/loading-libraries-in-dr-scheme 1 Loading libraries in Dr Scheme abhirama 2009-04-03T07:40:41Z 2009-04-03T08:21:40Z <p>I am working through SICP using Dr Scheme.</p> <p>How do I load external libraries in Dr Scheme? Say I want to use Math library then how do I ask Dr Scheme to load the particular library?</p> <p>I tried with the following: <strong>(require (lib "math.ss"))</strong></p> <p>Got the following error: <strong>reference to undefined identifier: require</strong></p> <p>I have chosen R5RS as the language.</p> http://stackoverflow.com/questions/355406/concepts-that-surprised-you-when-you-read-sicp 5 Concepts that surprised you when you read SICP? yesraaj 2008-12-10T08:21:37Z 2009-02-18T18:09:15Z <p>SICP - "Structure and Interpretation of Computer Programs"</p> <p>Explanation for the same would be nice</p> <p>Can some one explain about <strong>Metalinguistic Abstraction</strong> </p> http://stackoverflow.com/questions/547922/examining-the-internals-of-the-functions-in-haskell 4 Examining the internals of the functions in Haskell Sergey Mikhanov 2009-02-13T22:19:06Z 2009-02-14T08:03:15Z <p>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 lecture 3b authors present a function for computing the derivatives symbolically. It contains, among others, the following lines:</p> <pre><code>(define (deriv exp var) (cond ((constant? exp var) 0) ((same-var? exp var) 1) ; ... </code></pre> <p>Further in the lecture, some more functions are defined:</p> <pre><code>(define (constant? exp var) (and (atom? exp) (not (eq? exp var)))) </code></pre> <p>Is there a way to do same thing in Haskell, i.e. check for atomicity and symbolic equivalence to some other function? Or more general, what are the means of "disassembling" functions in Haskell?</p> http://stackoverflow.com/questions/502968/are-scheme-functions-one-liners 2 are scheme functions one liners ? Rajkumar S 2009-02-02T12:00:49Z 2009-02-02T15:16:58Z <p>Hi,</p> <p>I am following SICP to learn, and while attempting to solve Ex 1.3 I arrived at the following code as my first attempt:</p> <pre><code>(define (sumsq a b c)( (define highest (if (&gt; (if (&gt; a b) a b) (if (&gt; a c) a c)) (if (&gt; a b) a b) (if (&gt; a c) a c))) (define second_h (if (&gt; (if (&gt; a b) b a) (if (&gt; a c) c a)) (if (&gt; a b) b a) (if (&gt; a c) c a))) (+ (* highest highest) (* second_h second_h))) </code></pre> <p>It was not working and I looked up the solution and found them at <a href="http://community.schemewiki.org/?sicp-ex-1.3" rel="nofollow">SICP Wiki</a></p> <pre><code>;; ex 1.3 ;; implemented using only techniques covered to this point (define (square x) (* x x)) (define (sum-of-squares x y) (+ (square x) (square y))) (define (largest-two-of-three x y z) (if (&gt;= x y) (sum-of-squares x (if (&gt;= y z) y z)) (sum-of-squares y (if (&gt;= x z) x z)))) </code></pre> <p>The difference was that I was using multiple statements to define variables and then sum the squares, while the correct way is to define each of my lines as functions. </p> <p>Naturally my question is, are functions in Scheme one liners? Or did I miss the whole thing? :)</p> <p>raj</p> http://stackoverflow.com/questions/13182/sicp-better-programming 6 SICP ... better programming? nmiranda 2008-08-16T15:49:28Z 2009-02-02T13:49:31Z <p>Last year I read an article on <a href="http://jaortega.wordpress.com/2007/01/31/a-scheme-bookshelf/" rel="nofollow">http://jaortega.wordpress.com/2007/01/31/a-scheme-bookshelf/</a> that claimed that if you read/study SICP "It will expand your mind. It will cure your diseases", I also read Eric Raymond "The Cathedral and the Bazaar" abou the Lips experience.</p> <p>I tried for a while to use it (I downloaded the SICP pdf and DrScheme), at a moment it seemed to me very cool but, I don't know, later I felt unmotivated cause it looked like I was returning to college and actually I need to produce, I don't see me developing theoric compilers but making applications for my clients.</p> <p>Don't get me wrong, I like to program, I don't see me doing anything else but I think to myself "Maybe it could be an enlightment experience, maybe I could enhance my solution approaches".</p> <p>What is your opinion? is it worth it to return to my SICP study?</p>