Scheme is a functional programming language in the Lisp family, closely modelled on lambda calculus with eager (applicative-order) evaluation.
1
vote
3answers
48 views
Scheme if-statement performing multiple actions
So I'm new to Scheme and am trying to have an if-statement perform more than one action if its condition is true. I tried something like:
(if (char=? (string-ref str loc) #\a)
((+ count 1) (+ ...
1
vote
3answers
51 views
Using 'define' in Scheme
I'm new to Scheme and was just curious about 'define'. I've seen things like:
(define (square x) (* x x))
which makes sense [Function name 'square' input parameter 'x']. However, I found some example ...
2
votes
3answers
88 views
How to rewrite `let*` in terms of `lambda`?
I understand how (let ((x v1) (y v2)) e) can be rewritten as ((lambda (x y) e) v1 v2). But I'm not too familiar with let*.
How can we rewrite (let* ((x v1) (y v2) (z v3)) e) in terms of lambda and ...
1
vote
1answer
47 views
(Scheme) Recursion without cons?
This procedure is supposed to replace the values in vec1 according to the procedure given. So, if the procedure was +, then it would replace each value in vec1 with the sum of each element. For ...
0
votes
3answers
78 views
Arithmetic Recursion
I'm a beginner to scheme and I'm trying to learn some arithmetic recursion. I can't seem to wrap my head around doing this using scheme and producing the correct results. For my example, I'm trying to ...
0
votes
3answers
54 views
Encapsulating Certain Parts of List
I'm trying to write a procedure that "encapsulates" (i.e. puts in a list) elements of a list between a "separator" element.
(my-proc '(1 + 2))
=> ((1) (2))
(my-proc '(x * y + z ^ 2 + 1 + 5))
...
1
vote
1answer
43 views
Number in Sequence that a pair falls in
I want to find what number in the sequence a pair falls in. I am trying to write a procedure that verifies that f(1, n) = 2n - 2 and f(m+1, n+1) = 2f(m, n). It works when I call (number 99, 100), ...
2
votes
1answer
44 views
Scheme: overload built-in procedures, general overloading
More specifically, can you overload the built-in Scheme procedure display?
More generally, how can you overload any procedure in Scheme?
0
votes
3answers
103 views
Matrix Operations?
As I am a SCHEME beginner, I am having a tough time figuring out how to work with matrices.
I am unsure on how to do the following:
A) Given a matrix, return the dimensions of said matrix
EX:// '(2 ...
1
vote
2answers
66 views
scheme equivalent to ruby debug 'p' statement
I'm trying to debug some scheme code. It would be helpful if I could print the contents of a variable or binding out.
Is there an equivalent to the 'p' statement of Ruby in Scheme.
In particular, ...
1
vote
1answer
29 views
scheme define-syntax body form
(define-syntax let
(syntax-rules ()
[(_ ((x e) ...) b1 b2 ...)
((lambda (x ...) b1 b2 ...) e ...)]))
The single rule in our definition of let should be fairly self-explanatory, ...
1
vote
1answer
45 views
scheme : delay and force for interactive I/O
First I'll give question.
Suppose define input to be a function that returns an "istream" - a promise that when forced will yield a pair, the cdr of which is an istream:
(define input (lambda () ...
2
votes
1answer
101 views
How do I find the index of an element in a list?
This is trivial implement of course, but I feel there is certainly something built in to Racket that does this. Am I correct in that intuition, and if so, what is function?
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 ...
0
votes
1answer
34 views
Scheme : I have no idea to implement given fucntion
It's the exercise of "Programming language pragmatics, Michael Scott" .
Q. return a list containing all elements of a given list that satisfy a given predicate. For example, (filter (lambda (x) (< ...
3
votes
1answer
36 views
scheme: rotation function is not working
(define rotate
(lambda (ls)
(define subrotate
(lambda (head tail res)
(if (null? tail)
res
...
0
votes
1answer
42 views
Scheme : What's error in my tail-recursion code?
(define log2_tail
(lambda (n)
(letrec ((log2 (lambda (n res)
(if (= n 1)
res
(log2 (quotient (+ n 1) 2) (+ 1 ...
1
vote
1answer
46 views
scheme : What's imperative features?
The bottom code is to remove adjacent duplicate elements from a sorted list L.
(define a
(lambda (L)
(cond
((null? L) L)
((null? (cdr L)) L)
((eqv? (car L) (car (cdr L))) ...
2
votes
1answer
61 views
Command line syntax checker for Racket / Scheme
I'm looking for a command-line tool to check the syntax of my Racket / PLT-Scheme code. The purpose of this is to build a syntax-checker for Syntastic Vim plugin.
Has anybody heard of a way?
0
votes
1answer
45 views
Special permutation in scheme
How i can generate permutations in scheme in this way: first element of the permutation just between 1-2,the second 1-4 and the third 1-3...and also the numbers can appears more than once in the ...
-1
votes
1answer
65 views
I can't understand scheme define, lambda, let clearly
recently I started learning scheme language
but I really don't know how to solve this problem.
(define A
(lambda()
(let* ((x 2)
(C (lambda (P)
(let ((x 4))
...
0
votes
1answer
48 views
Replacing an element into a list Scheme
I need to replace an element from a list with another element in Scheme, but the problem is that the list where I need to replace can be nested.
For example, if I have the list '(1 (2 3 4 5) (6 7)) ...
0
votes
2answers
51 views
Scheme intersection between lists of pairs
I have the following example of lists where on the first line I have a result and on the second a filter, and I need to keep only the results that match at least one of the pairs in the filter.
...
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
205 views
Return a index of sublist in scheme
Well I am a Scheme newbie and I`m reading SICP right now.I found a question on a website.I took 2 days to think about it but still no idea could u guys please help with that?
Question following:
A ...
1
vote
1answer
34 views
Scheme Lambda Return Values
Scheme is about to drive me crazy. In the code below I am simply trying to parse the string given to repl into an actual list. Instead when I print what is supposed to be my parsed list all I get is a ...
2
votes
2answers
98 views
Intersect more lists in Scheme
I am trying to intersect more lists in Scheme and I need a little help. The lists look like this:
The first two:
(((?x john) (?city new-york))
((?x mike) (?city chicago))
((?x mary) (?city ...
0
votes
2answers
87 views
Given the powerful macro system, are `quote' and `quasiquote` redundant in modern Scheme?
Modern Scheme (and its descendants like Racket) features a very powerful hygienic macro system. It seems to me quote and quasiquote have lost their historical position in defining (unhygienic) macros ...
1
vote
2answers
26 views
How to have a pair whose second element is a list?
I'd like to have a pair whose second element may be either a symbol or a list. For example, '(x . y) and '(x . (a b c d)) are both valid pairs in my context. If the second element is just a symbol, I ...
0
votes
2answers
142 views
Setting an environment variable in Mac OSX 10.8 [closed]
I feel quit stupid asking this, but I am completely unable to set an environment variable in Mac OSX 10.8.
I'd greatly appreciate some specific instructions on which files to edit, what is the ...
0
votes
0answers
24 views
Why is `process` not available in a library using Petite Chez Scheme?
I am writing an R6RS library to use the GTK Server with Petite Chez Scheme. I use process to start the server process and get its stdin and stdout ports:
(let ((ports (process "gtk-server ...
2
votes
1answer
35 views
Generate all possibilities in scheme from a list
I have a list of sublists:
((a b c) (e f) (z h))
and i want to generate something like this:
((a e z) (a f z) (a e h) (a f h) (b e z) (b e h) ... ) and so on.
I want, given a list of sublist, ...
3
votes
1answer
68 views
Web scraping with Scheme
Is there a good library/package to do web scraping using Scheme (preferably Racket)?
e.g. a Scheme equivalent of mechanize?
1
vote
1answer
24 views
Destructive operations in scheme environments
I'm confused about destructive operations in Scheme. Let's say I have a list and some destructive procedures defined in the global environment:
(define a '(a b c))
(define (mutate-obj x)
(set! x ...
1
vote
1answer
72 views
How to do pattern matching in scheme
Has anyone an idea how to make match in scheme with this two (?x lives-in ?city) (john lives-in new-york) ?i've tried using match-define but i didn't succeed
0
votes
1answer
49 views
how to take apart numbers into integer & fractional part in scheme?
I want a function number->second-pair that accepts a number and returns a pair of integer representing its integer part & fractional part multipled with 1000000.
i.e.:
(number->second-pair ...
1
vote
1answer
64 views
Racket, execute arbitrary function with arbitrary number of parameters
I would like to define a general function along the lines of:
(define (gen-func other-func)
(other-func))
that will execute the function passed to it. But, I want to be able to pass parameters ...
1
vote
2answers
53 views
(Scheme) How can I apply the function to every sublist in a list?
I'm trying to remove the first element in every sublist in the list. I need the cdar of every sublist. I tried using map but it didn't work. I get voids for some reason. Should I use recursion ...
0
votes
2answers
34 views
(scheme) Cons a number to the front of sublists?
I have a function that finds the distance of 2 coordinates and puts it in the front of the corresponding sublist. Right now, it only finds the distance of the first coordinates. I think something is ...
5
votes
2answers
97 views
Church Numerals convert to int without language primitive
Is it possible to convert a church numeral to an integer representation without using a language primitive such as add1?
All the examples I've come across use a primitive to dechurch to int
Example:
...
0
votes
1answer
71 views
gaussian elimination method and functional programming paradigm
Is it possible to write gaussian elimination method of systems linear equations in functional programming paradigm, that is a call to the function recursively ?
For example in ML or Scheme ?
1
vote
2answers
51 views
Types of recursion in Sceme
I'm studying Scheme language (by myself). Recently I've encountered this question:
There are two functions which compute the same value (compose function f - n times).
(define (repeated f n)
...
2
votes
1answer
53 views
Lower case an entire string in Racket
Is there a way to turn all of the characters in a string into lower case in Racket?
The only way I can think of is turning char-downcase but it won't work with strings
I am using the beginner ...
2
votes
2answers
42 views
Ordered streams of pairs - Scheme
I am trying to order streams of pairs according to the weight of the pairs - the sum of the two numbers in the pair. (I'm not excluding duplicates.) My code doesn't seem to be working
(define ...
0
votes
3answers
135 views
detecting a palindrome without using reverse
I was thinking a way to create a function that detects a palindrome without using reverse...
I thought I would be clever and do a condition where substring 0 to middle equals substring end to middle. ...
0
votes
1answer
36 views
Time or thread function in r5rs
I made a game which uses the time for calculating the effect of gravity in relation of the time (speed and movement). Although the game uses mostly r5rs functions, I used the thread, sleep and other ...
0
votes
1answer
78 views
How can I fix my quicksort implementation? [closed]
Here's my attempt to implement quicksort:
(define (sublist ls start stop middle)
(cond ( (null? ls) ls)
( (< middle start) (sublist (cdr ls) start stop (+ middle 1)))
( (> middle ...
-2
votes
1answer
35 views
stream exercises in scheme
there is an answering as follows.
Write a Scheme procedure, called avg3 that takes a stream of numbers, and produces a number stream comprising the averages of triples of elements of the input stream. ...
3
votes
2answers
87 views
How can I make a Racket reader macro to transform any instance of one character into two other characters?
More specifically, I need any instance of | to be transformed into \|. I tried reading the documentation on reader macros and I am extremely lost. Can somebody explain this in understandable terms, or ...
1
vote
1answer
54 views
Scheme Pairs output
Trying to produce an output of pairs that would look like (1 1) (1 2) (1 3) (2 2) (2 3) (3 3), if taking the first 6 elements of a stream. (The first 6 have 3 columns and it should print the pairs ...


