0
votes
2answers
37 views

Getting an error while interpreting lambda in scheme

I am trying to interpret lambda in scheme. Here is my code: (define get-operator (lambda (op-symbol) (cond ((equal? op-symbol '+) +) ((equal? op-symbol '-) -) ((equal? op-symbol '*) *) ...
2
votes
2answers
40 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
1answer
49 views

Simply Scheme Chapter 09. Lambda. Any more Lambda exercises?

Greets, Reading Simply Scheme Chapter 09 and from what I can see, Lambda seems important. I'd like to practice it to the bone so I'm looking for beginner exercises (preferably non recursive) vis à ...
0
votes
3answers
57 views

Scheme lambda and all procedures runs

When trying to run these procedures, it seems everything is fine until I call (set! fib (mem 'memorize fib)) (fib 10) (fib 10) (set! fib (mem 'unmemorize fib)) (fib 4) What happens is after I ...
0
votes
1answer
33 views

Scheme: What does this function evaluate to?

(define test (lambda() (let* ((x 1) (y 3) (z 5) (foo (lambda (n) (let* ((x 3) (y (+ x n)) ...
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 ...
0
votes
3answers
57 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))) ...
2
votes
2answers
61 views

Using lambda racket

Design a function that consumes a [Listof Number] and checks if 0 is in the list. I want to figure this out using lambda. I've been reading the book, and this is what I've came up with so far. I ...
-1
votes
1answer
87 views

scheme procedure to navigate a character in a game [closed]

I need to write a procedure for a school contest for a little game to find a treasure in the minimum numbers of steps (or display that the treasure is unapproachable) in Scheme. I need some advice: ...
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 ...
-1
votes
2answers
124 views

What is lambda in scheme [closed]

I am VERY new to scheme. Very basic question for everyone. What is lambda in function calls I see everywhere online? What does it do? What do I lose by not using it?
3
votes
2answers
62 views

Defining scheme functions with and without lambdas, is there a difference

Consider 2 Scheme functions ; Define function (define (square n) (* n n )) (square 12) 144 ; Another way to define same function (define square (lambda (n) (* n n))) (square 12) 144 Both seem to ...
2
votes
3answers
119 views

What does the use of multiple lambdas in scheme mean?

I am currently learning scheme and I came across these functions: (define t (lambda (x) (lambda (y) x))) (define f (lambda (x) (lambda (y) y))) Apparently they are representations of true and ...
3
votes
2answers
172 views

Currying a function n times in Scheme

I'm having trouble figuring out a way to curry a function a specified number of times. That is, I give the function a natural number n and a function fun, and it curries the function n times. For ...
2
votes
2answers
102 views

chez scheme special lambda

(lambda (head . rest) (...)) I encountered this code on the net when trying to learn some scheme, but I couldn't find any useful explanation. What is the meaning of this? Is it some kind of ...
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 ...
4
votes
2answers
393 views

How to use lambda in DrRacket Scheme

I'd like to ask if you can help me with a programming exercise. I'm trying to make a lambda expression of this form: λz.x(yz) The way I understand this, is that y is a function, applied to the ...
1
vote
2answers
123 views

The Little Schemer: stuck on multiinsertLR&co example

I was able to grok the multirember&co function after some work, but I can't really make much sense out of the following multiinsertLR&co code (p. 143): (define multiinsertLR&co (lambda ...
0
votes
3answers
314 views

Scheme: How do we write recursive procedure with lambda?

I was going through Structure and interpretation of computer programming by Brain harvey. I came across this question which i could not figure out how to do it. How do we write recursive procedure ...
1
vote
3answers
279 views

Take inverse of a function in Racket

I am trying to write a higher-order Racket function that takes a first-order function of one variable and returns its inverse. I know that it has to start off something like this: (let [(inverse ...
4
votes
2answers
208 views

scheme using lambda

I have a piece of code in scheme that uses several lambdas. It basically returns a number that's in the middle. (define foo (lambda (x) (letrec ((h (lambda (y z) (cond ...
2
votes
4answers
94 views

What does the parameter in the second lambda do?

This is from SICP Video Lectures, Lecture 2a around the 39:51 mark. (DEFINE (SQRT X) (FIXED-POINT (AVERAGE-DAMP (LAMBDA Y (/ X Y))) 1)) (DEFINE AVERAGE-DAMP (LAMBDA f ...
4
votes
1answer
104 views

Eliminate lambda in Scheme?

Hi guys I need to eliminate this lambda construction for my school asignment. Any ideas how to do that? (define (foo x) (letrec ((h (lambda (y z) (cond ((null? y) 'undefined) ...
1
vote
3answers
140 views

A function builder in scheme

A function I'm supposed to build is supposed to take in a list of numbers as a parameter, and give a single function as an output that does as follows: If the number in the list is a positive number, ...
8
votes
2answers
292 views

When to use lambda definition with a “bare” formal parameter?

I'm learning Guile Scheme at the moment, and in the documentation I suddenly ran into the following construction: ((lambda args (display args)) 42) => (42) This threw me for a loop; up until ...
2
votes
2answers
177 views

Non-Recursive list function with Y Combinator

Note: This is kind of homework, kind of not - the end goal is to have a function that produces a powerset of a set of numbers supplied to the function as a list of numbers. I ahe a recursive version ...
1
vote
4answers
700 views

How do you write a procedure that outputs a function? (Racket)

How do you write a procedure that outputs a function? (Racket) Would the procedure output a lambda?
2
votes
4answers
292 views

shorthand for ((lambda () ))

Is there a shorthand in scheme for ((lambda () )) For example, instead of ((lambda () (define x 1) (display x))) I would love to be able to do something like (empty-lambda (define x ...
12
votes
7answers
2k views

In Scheme, how do you use lambda to create a recursive function?

I'm in a Scheme class and I was curious about writing a recursive function without using define. The main problem, of course, is that you cannot call a function within itself if it doesn't have a ...
0
votes
7answers
640 views

Scheme: How to check if all elements of a list are identical

I'd like to create a Scheme function that yields true if it is passed a list that is composed entirely of identical elements. Such a list would be '(1 1 1 1). It would yield false with something like ...
2
votes
1answer
156 views

Converting a string to a procedure

I'm creating a program that allow a user introduce a lambda function only writing it in the interface writing box like this: (lambda (p q) (and (not p) q)) This is the result "(lambda (p q) (and ...
7
votes
3answers
404 views

Explain the continuation example on p.137 of The Little Schemer

The code in question is this: (define multirember&co (lambda (a lat col) (cond ((null? lat) (col (quote ()) (quote ()))) ((eq? (car lat) a) (multirember&co a ...
2
votes
1answer
386 views

How do closures in Scheme work?

I tested the following code in Racket/DrScheme: (define (makem) (define x 34) (list (lambda () (set! x (+ x 1)) x) (lambda () (set! x (+ x 1)) x)) ) (define f (car (makem))) ...
3
votes
3answers
747 views

Ordering of nested let and lambda in Scheme

What is the difference between two functions in Scheme, one defined like this— (define doSomething (lambda (x) (let (f (100)) (f x)))) and the other like ...
5
votes
6answers
945 views

factorial function with just lambda expression

What is the most transparent and elegant factorial function you can create, on your own, using only lambda expressions? One of my students took a Scheme class at Berkeley and was given this extra ...
0
votes
1answer
875 views

How to implement let as a lambda function in Scheme

As an exercise I am trying to define let as a lambda function something like this: (define let_as_lambda (lambda (var) (lambda (value body) (var body) val))) And I am hoping to ...
5
votes
1answer
191 views

Help understanding this implementation of cons and car in scheme using lambdas

My question relates to the following code: (define (cons. x y) (lambda (m) (m x y))) (define (car. z) (z (lambda (p q) p))) My problem is with how this code actually works. As far as I can ...
9
votes
6answers
828 views

Why all the lambdas in The Little Schemer?

After learning a bit of Scheme from SICP, I started reading The Little Schemer (which I find quite entertaining) and am about one fourth done. I noticed that I can write many (most? all?) solutions ...
1
vote
1answer
466 views

Passing a function as a parameter but getting unexpected results

I'm using Racket with the "Advanced Student" language setting and I'm having difficulty trying to write a function that takes a function, executes it n times and reports the time elapsed for each run. ...
1
vote
1answer
85 views

Nesting Function Calls

This has been driving me absolutely nuts. I have a substitute function like this: (define (mysub x bind body) ;; x, bind, body are lists ...) I need to call the function like this: ;;this is ...
0
votes
4answers
307 views

Why is lambda instead of function defintion shorthand considered good style in scheme?

In scheme, why is this: (define foo (lambda (x) 42)) considered better style than this: (define (foo x) 42) And is there any reason to favour one over the other?
1
vote
1answer
237 views

How to make just part of a macro hygienic

I'd like to have a version of lambda, called lambda-r, from within which you can return. An example: (+ ((lambda-r () (return 1) 2)) 5) This would give the value 6. Although you might ...
3
votes
3answers
303 views

Why won't `let` work for naming internal recursive procedures?

Consider the following implementation of a function to compute factorial: [1] (define fac-tail (lambda (n) (define fac-tail-helper (lambda (n ac) (if (= 0 n) ac ...
4
votes
1answer
596 views

Normal order and applicative order evaluation in Scheme

For the 1st example given on site: View-Site, my understanding is that normal order evaluates to [6;1;1] and applicative order evaluates to [6;2;2] Can anyone please confirm my assessment? ...
12
votes
6answers
4k views

What's the point of lambda in scheme?

I am learning scheme. I know how to use both lambda and let expressions. However I'm struggling to figure out what the point is of using lambda. Can't you do everything with let that you can with ...
4
votes
3answers
564 views

using lambda instead of let in scheme

In SICP 1.2.1 there is a function that makes a rational number, as follow: (define (make-rat n d) (let ((g (gcd n d))) (cons (/ n g) (/ d g)))) I'm just curious how you can implement the same ...
1
vote
4answers
988 views

Converting a Scheme expression to a string

Given an expression '(lambda (x) x) How can I translate this into a string. I thought symbol->string will do the job but no it cant not a symbol. e.g for a macro to-string: (to-string (lambda(x) ...
18
votes
9answers
2k views

What is call/cc?

I've tried several times to grasp the concept of continuations and call/cc. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than ...
0
votes
3answers
119 views

What am I doing wrong with this Scheme evaluation?

Evaluate: ((((lambda (x) (lambda (y) (lambda (x) (+ x y)))) 3) 4) 5) This is what I did: evaluate ((((lambda (x) (lambda (y) (lambda (x) (+ x y)))) 3) 4) 5) evaluate 5 -> 5 evaluate ...