1
vote
2answers
55 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 (appro …
1
vote
2answers
51 views
Scheme: Implementing n-argument compose using fold
I'm trying to find the "best" implementation of a multi-argument "compose" in Scheme (I know it's a builtin in some implementations, but assume for the moment I am using one that d …
1
vote
3answers
50 views
How do I do exponents in Scheme?
pow, ^, ** doesn't work, and Scheme seems to be too common a word to be able to effectively google it.
2
votes
2answers
33 views
How to check for NaN in Scheme?
Also is there a place where I could look up all the floating points ops in Scheme?
1
vote
4answers
42 views
How do I do a floating-point modulo operation in Scheme?
% isn't defined. modulo only works on integers. I want something equivalent to Javascript's modulo / c's fmod.
2
votes
2answers
31 views
When to use (values …) (define-values …) in Scheme.
I have read documentation for functions such as values and define-values that return and consume multiple values. I understand what they do. It's not clear to me when you would wan …
0
votes
1answer
24 views
How to do bit-wise zero-filling right shift in Scheme?
According to here, arithmetic-shift will bit-shift left and right. The right shift preserves the sign. Is there any unsigned right-shift operator, which fills the vacated bits with …
2
votes
2answers
56 views
How can you rewrite “begin” in Scheme?
As the Wikipedia article explains, begin in Scheme is a library form that can be rewritten using more fundamental forms like lambda.
But how do you rewrite a begin, especially con …
1
vote
4answers
34 views
Why do you have to cons with a null to get a proper list in scheme?
I realize this is a total n00b question, but I'm curious and I thought I might get a better explanation here than anywhere else. Here's a list (I'm using Dr. Scheme)
> (list 1 …
0
votes
3answers
39 views
how to convert a list to num in scheme?
like convert (1 2 3 4) to 1234~
2
votes
3answers
186 views
Scheme/Lisp nested loops and recursion
I'm trying to solve a problem in Scheme which is demanding me to use a nested loop or a nested recursion.
e.g. I have two lists which I have to check a condition on their Cartesia …
3
votes
3answers
89 views
Finding if a number is the power of 2 in Scheme
I'm fairly new to Scheme and am attempting to learn it on my own from scratch. I'm stuck on the syntax of this problem. I know that if I want to find out if a number is a power of …
0
votes
1answer
37 views
How To Build a DrScheme Teach Pack
Hello,
I'm learning PLT Scheme and I want to know how can I build a Teach Pack for DrScheme, some tutorials...? Thanks.
2
votes
1answer
58 views
What are some of the requirements that IronScheme couldn’t complete?
According to Wikipedia:
"IronScheme, an upcoming Scheme implementation, was planning to build upon the DLR, but decided to abandon this idea because the DLR branch the project used …
1
vote
2answers
54 views
PLT Scheme noob: Boolean and/or aren’t procedures?
I'm trying to make a truth-table generator for a digital electronics course because that's how I have fun in my spare time and don't judge me.
Anywho, I figured I'd have a hash wi …
