Scheme is a functional programming language in the Lisp family, closely modelled on lambda calculus with eager (applicative-order) evaluation.

learn more… | top users | synonyms

0
votes
1answer
46 views

Interleaving pairs in Scheme

I'm trying to write a procedure that takes 2 streams and that puts together their pairs and then interleaves them. Right now it's not producing the correct output. Here's the code I have: (define ...
1
vote
2answers
45 views

(Scheme) Check if a generic procedure is true?

I made a program that is supposed to put all the elements that are true for the predicate in a list. It does work but not for things like >, <, etc. It only works for things like zero? and ...
1
vote
2answers
102 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 ...
0
votes
1answer
48 views

Gimp Scheme Script - Video Effect

As the admin of the French community around the CBS's show Person of Interest, i'm interested in making a background picture for our forum. We thought that it would be a good idea to gather a lot of ...
0
votes
2answers
41 views

eval scheme function with quote

I am trying to evaluate a formula in scheme: (define formula '(if (or (equal? '?country 'United-States) (equal? '?country 'England)) #t #f)) (define (eval-formula ...
1
vote
2answers
43 views

Testing equal to promise

How do I test if the cdr of a stream is equal to promise? I'm trying to write something that looks like this: (equal? (stream-cdr s) #<promise>) It tells me that the syntax # is incorrect, ...
1
vote
2answers
102 views

Racket Programming. Where am I going wrong?

The question i'm trying to answer: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? Where am I going wrong? my prime? test seems to be the ...
1
vote
2answers
55 views

Writing lists using only CONS command in Scheme

Using only the cons command in the Scheme Programming Language, how can one write nested lists such as '(a b (x y (m)))?
0
votes
2answers
57 views

Scheme: Cond “not equal”

I'd like to do this in scheme: if ((car l) != (car (cdr (order l))) do something in particular I wrote this: ((eq? (car l) (car (cdr (order l))) ) (cons (count (car (order l)) (order l)) ...
1
vote
2answers
55 views

Simplify Expressions with Racket

I have a function that differentiates an equation and prints it as a list to the screen. What I want to make now is a function that takes the expression returned like this one: '(+ (* x 0) (* 2 1)) ...
1
vote
1answer
32 views

Scheme not divisible

I'm try to write a procedure that defines the stream of all integers that are not divisble by either 2, 3, or 5. This is what I wrote: (define not-d (stream-filter (lambda (x) (not (divisible? x ...
1
vote
2answers
68 views

(Scheme) Find out if some of the numbers in a list add up to a certain number?

I'm making a program that takes a list and a sum. If some of the numbers in the list add up to the sum, it returns true. Else, return false. It seems to be working for some cases but not for others. ...
1
vote
1answer
30 views

Scheme: Number of occurrences in a list

I'm trying to write a Scheme function called "p" with one parameter X which is a list of letters. the function should return true if the number of a's is one less than the number of b's. This is what ...
1
vote
1answer
77 views

Why are “dotted pair” s-expressions allowed in Racket syntax?

After more or less understanding the answers to this question, it looks to me that in Racket/Scheme, at the reader level, the second element of each pair in the syntax tree has to be a list. In other ...
0
votes
2answers
37 views

binary trees searching inside

Can anyone tell me what I need to do here? (define (count-values abst v) (cond [(empty? abst) 0] [else (+ (cond [(equal? v (bae-fn abst)) 1] (else 0)) ...
0
votes
3answers
50 views

Walk randomly through a binary tree?

I'm making a program that takes a tree and randomly picks a branch (left or right) and returns those values in a list. For some reason it's not working. Any help? Example: ~(rand-walk (tree 1 (leaf ...
0
votes
2answers
28 views

Scheme:function assistance

i am fairly new to Scheme and,i was thinking of a way to cube every number in a given list recursively so far this is what i have: (define (cube-it-list lst) (cond [(empty? lst) empty] ...
1
vote
1answer
45 views

How to map a function over a list in parallel in racket?

The question title says it all, really: What is the best way map a function over a list in parallel in racket? Thanks.
1
vote
2answers
70 views

Is this scheme code tail recursive?

EDIT: Thanks to everyone. I'm new to the language(just started using it two days ago), so that's why I'm unfamiliar with conds. I may rewrite it if I have time, but I just wanted to make sure I had ...
1
vote
2answers
76 views

In Racket, if an unquoted pair is constructed with the dot notation, is it possible to use a variable or an expression value for the second element?

In Racket, the following works: (+ . [1 2]) ; => 3 { define a + } (a . [1 2]) ; => 3 However, i see no way to define b to be the (1 2) list so as to get (+ . b) and (a . b) to return 3. Is ...
0
votes
3answers
41 views

(Scheme) Find if a item is a member of a leaf in a tree?

I'm making a function that checks to see if a item is a member of a leaf in a tree. This is what I have so far. It's not working right though. Some of the inputs that should be true are returning ...
1
vote
1answer
110 views

Beginner Scheme: Turning Binary Search Trees into lists

I am having trouble with binary search trees and turning them into lists. (define-struct node (key val left right)) ;; A binary search tree (bst) is either ;; empty, or ;; a structure (make-node k v ...
0
votes
2answers
127 views

Write program to approximate pi with Leibniz formula in Scheme?

I'm trying to figure out how to write a program to approximate pi with the Leibniz formula. The function takes an error, E, and somehow gives the pi approximation. I'm not sure at all how to do ...
0
votes
1answer
50 views

Beginner scheme: How to make a binary arithmatic expression a string.

I want to change a binary arithmetic expression into a string and I'm having trouble with the recursive part of it. So far I can only do the basic two. (define-struct bae (fn arg1 arg2)) ;; A binary ...
0
votes
2answers
116 views

Checking if an item is a sublist of a sequence or not in scheme program [closed]

I need to check if an item is a sublist of a sequence or not. I have this code but it only works with characters. How can I make it work with numbers also? (define (sublist? s l) (cond ((null? ...
0
votes
1answer
52 views

How to add to embedded list in scheme?

I'm trying to generate a symbol table in scheme and I'm stuck on the set-symbol function. The number corresponds to the block level of the code or "scope". First symbol it reads in ((c class 0)) Next ...
1
vote
1answer
258 views

Scheme - list functions with filter

I am currently working on a homework assignment with MIT scheme, and have come across a few problems that are supposedly very short, though I'm a bit confused as to how to implement some of them. One ...
0
votes
3answers
56 views

Scheme write function that return a function

I'm having trouble defining a function that, according to a given param "flag", return a function in Scheme: (define con-func (lambda(f a flag) (cond (= flag 0) (lambda (x) (f (+ x a))) ...
0
votes
1answer
52 views

Keep same list after repeated calls to function in Racket

I'm using Racket and what I want to do is develop a random list of given elements that also has a given length. I know how to create the list but the problem that I'm having is I don't know how to ...
1
vote
2answers
51 views

Scheme: Recursion with list append

I have a recursive function that basically keeps appending elements to a list recursively until a condition has been met. There's an issue though, and that's to use append, we must give it a quoted ...
0
votes
1answer
51 views

is it possible to implement “define-macro” in mit-scheme

After reading this page. I find it hard to memorize how to use define-syntax in place of define-macro, so I want to implement define-macro (or at least find some equivalent) in mit-scheme. Here is my ...
1
vote
2answers
84 views

List to string conversion in Racket

How do I convert a list into a string in DrRacket? For example, how do I convert '(red yellow blue green) into "red yellow blue green"? I tried using list->string but that seems to work only for ...
1
vote
1answer
57 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 ...
1
vote
1answer
42 views

Append to List Variable with Racket

I want to add an integer to a list that already exists using Racket. Here is the code that I have so far. (define (countBlackPegs gameList playerList) (define blackPegs '()) (if (equal? (car ...
1
vote
1answer
116 views

too much recursion scheme javascript

I'm using a scheme interpreter in javascript I'm getting the error "too much recursion" when I try this code: ;;;basic things (define map (lambda (f l) (if (null? l) l (cons (f (car ...
2
votes
2answers
61 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 ...
1
vote
2answers
59 views

removing list with a list

I understand how to remove elements when there are list and a variable, but is there a way to remove elements from a list using another list? EXAMPLE: (list 1 2 3 4 5)(list 1 2 3) yields (list 4 5)
-1
votes
1answer
34 views

check-expect function

;; snoc : X [Listof Any] -> [Listof Any] ;; Adds the X to the end of the list (define (snoc x l) (cond [(empty? l) (cons x empty)] [else (cons (first l) (snoc x (rest ...
0
votes
1answer
59 views

Bug in Scheme match-maker

I keep getting repetitions of #<procedure:me> in certain places in the results when the following code is run, and I cannot figure out why. To test: run (match-make men women) Here is the ...
2
votes
1answer
61 views

Extracting only numbers within a list

Is there a way to extract only numbers within a list? I'm using the beginner language package so I cannot use filter which is a bummer. (list a 1 2 b d 3 5) => 1 2 3 5 etc I want to use this as a ...
0
votes
1answer
88 views

Type of Define expression in Scheme

To put it simply: My question is whats is the type of a define expression in Scheme? Take for example: (define x 5) or (define x (lambda (n) (* n n))) It's a bit confusing for me. Can anyone ...
0
votes
2answers
52 views

Computing a list containing the numbers from x to y

How can I create a method which takes two numbers and prepare a list from first number to second number. The first number is always positive and less than second number? I tried the following but ...
0
votes
1answer
44 views

how to write eval and apply in this case?

Write the functions eval1 and apply1, eval1 consumes an association list (where the key is Symbol and the value is Num) and an arithmetic expression, matching variable names to values. apply1 consumes ...
-1
votes
3answers
104 views

Beginner Scheme: Reversing the numbers in a list of numbers without using reverse

Example: (reverse-list (list 1 2 3 4)) => 4321 Note: I am not allowed to use string->num or num->string or reverse. so the list is consumed and the reverse number is created (not a list anymore) ...
0
votes
1answer
59 views

Beginner Scheme: How to write string-downcase

I was just wondering while reading my textbook how someone could write string-downcase for beginners in scheme? Thank so much! I know how to do it using map but I was wondering if there was a more ...
-1
votes
2answers
58 views

Beginner scheme :Consumes two lists and and produces a list of all members in list1 that are not in list2 [closed]

For example: (check-expect(2-list empty (list 3 4)) empty) (check-expect(process-2-lists (list "nice" 'blue) empty)(list "nice" 'blue)) (check-expect(process-2-lists (list "nice" 'blue 5 10 5 'blue ...
0
votes
2answers
59 views

Beginner scheme how to replace a string into a list?

;; An association list (al) is either ;; empty or ;; (cons (list k v) alst), where ;; k is a nat (the key), ;; v is a string (the value), and ;; alst is an association list (al) ...
1
vote
2answers
30 views

In Scheme, how do I replace elements in a list with the the elements of another list?

So, the function should take 3 arguments that are all strings. The first is the original string. The 2nd is what letters in the string should be changed. The 3rd is what the letters should be changed ...
0
votes
2answers
62 views

In beginner scheme how do I consume and combine two lists?

I'm trying to figure out a question that takes a list of first names and a list of last name and create a new list of email addresses with the first letter of the first name and up to 7 letters of the ...
2
votes
3answers
174 views

Binding variable in Scheme not knowing how many variables you have

I'm looking for a way to search , using an pattern in Scheme . Like , if I have a search pattern '((x likes y) (y is a hard sport) (x is rich)) and the input '((Mike likes rugby) (Rachel likes ...

1 3 4 5 6 7 52