15
votes
2answers
394 views

How to compare two functions for equivalence, as in (λx.2*x) == (λx.x+x)?

Is there a way to compare two functions for equality? For example, (λx.2*x) == (λx.x+x) should return true, because those are obviously equivalent.
2
votes
2answers
49 views

LISP - destructive and non-destructive constructs

What is the correct definition of destructive and non-destructive constructs in LISP (or in general). I have tried to search for the actual meaning but I have only found a lot of usage of these terms ...
0
votes
1answer
32 views

AutoLISP: How to solve no function definition error?

Below I have pasted the code from my drawmycoil.lsp file. (defun drwcoil () (setq helices_center '(0 0)) ; this is the center of the helices (setq inner_radius 1e3) ; 1000 microns (setq ...
1
vote
1answer
40 views

Scheme Parameter Not Applicable

I am starting to learn Scheme and well, I am trying to implement my own max function that gives the max of just two parameters. I've written the function like this: (define (myMax x y) (cond ((> x ...
-1
votes
2answers
77 views

SICP example doesn't work on Racket

I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter) (define (definition-value exp) (if (symbol? (cadr exp)) (caddr exp) (make-lambda ...
0
votes
0answers
59 views

make-lambda function alternative in racket

I am learning scheme by reading SICP. One function in SICP measured is (make-lambda ...) I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
1
vote
0answers
176 views

Can every recursive function be rewritten using tail calls? [duplicate]

Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
2
votes
2answers
64 views

scheme pattern checking if it is a number

I am a scheme beginner and I am wondering how to explain this piece of scheme code? Looks so preculiar! (define (calc2 exp) (match exp [(? number? x) x])) ...
-1
votes
3answers
91 views

List difference function

Does any existing programming language, particularly in the Lisp or ML families, have a library function to calculate list difference in the sense of 'first until start of second' - I'm not sure ...
1
vote
1answer
52 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
2answers
59 views

Scheme namespace use convention. Compared with Javascript

Had to learn javascript for a project, do not miss it one bit! (Though I recognize its use and scale of its impact, not only in the desktop, but server and mobile spaces likewise). One of the things ...
3
votes
1answer
90 views

Functional Programming: persistent list that handles freq. item updates efficiently?

Given: You have a list of items. You’re using persistent data structures. You will make frequent updates to the persistent items (data structures) in your list. An item being modified is likely to ...
3
votes
3answers
71 views

Error with define in Racket

I just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a little script that generates images to represent source code using #lang slideshow. I know that ...
3
votes
3answers
94 views

Idiomatic way to use for, while still maintaining high performance

I have a map that is sorted by its keys which contains data like this: (def h {50 Text1 70 Text2 372 Text1 391 Text2 759 Text1 778 Text2 }) The map is sorted by Keys. ...
-2
votes
1answer
54 views

Persistent data structures: a persistent index? [closed]

Functional programming utilizes immutable data. When you modify something you reinstantiate "the world" reusing the previous incarnation in as much as possible for your augmented world. I am ...
5
votes
1answer
140 views

Clojure head retention

I'm reading Clojure Programming book by O'Reilly.. I came over an example of head retention. First example retains reference to d (I presume), so it doesnt get garbage collected: (let [[t d] ...
4
votes
1answer
123 views

Emacs lisp high-order function support

I am trying to implement Haskell-like high-order function in Elisp, using closures. ;;; -*- lexical-binding: t -*- (defun foo (pair) (car pair)) (defun* .curry (fn) (lambda (x y &rest ...
1
vote
1answer
105 views

How do I rewrite (def) out of this Clojure code?

I have written a game loop based on deWitter's game loop. However, I am unsure how to transfer it to a more functional state. I realize that there may need to be some mutable state left within the ...
2
votes
3answers
230 views

What are those functional functions called?

I'm looking for a functional way to implement this: list = [a b c d e f] foo(list, 3) = [[a d] [b e] [c f]] A potential solution is: foo(list,spacing) = zip(goo(list,spacing)) Where, for ...
0
votes
1answer
57 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
3answers
134 views

Is there a programming language that treats collections(lists) of objects and objects the same way? [closed]

For example, a function f takes a param of type A and returns a value of type B i.e, B f(A a) Is it a bad idea for a language to auto-extend the function f to List<B> f(List<A> la) ...
1
vote
2answers
45 views

Disjunction distribution property in lisp [closed]

Basically I need to represent this property down below as a function in lisp (p and q) or (r and t) = (p or r) and (p or t) and (q or r) and (q or t) The function distribute-or (fbf) takes as an ...
1
vote
1answer
198 views

Scheme streams and circular lists

In Scheme/Lisp I am trying to make a function that converts a list into a circular list. Therefore, I believe I need to construct an infinite stream in which the tail of the list points to the head of ...
1
vote
2answers
97 views

Anonymous macro in scheme

I am recently learning scheme and curious at a design that a macro can't be evaluated without an identifier, while a lambda(procedure) can be done so. For example, I can use an anonymous lambda as ...
0
votes
1answer
113 views

SICP Exercise 2.19 - how to extend this?

I am just exploring functional programming via SICP, and am wondering how I can extend Exercise 2.19 to do something more useful (and which seems to require side-effects). The exercise involves a ...
0
votes
2answers
91 views

Evaluate function from list in lisp

I need to write a function in lisp with two arguments - list of argumentless functions and list of integers. I need to evaluate functions from first list in order given by a second, i.e. (fun '(#'a ...
2
votes
4answers
136 views

In Lisp, how do you add a given element to every list inside a given list?

Here's what I have so far: (defun append-all(x L) (if (null L) L (cons (append (car L) x) (append-all x (cdr L)))) ) ) Output: (append-all '3 '((1) (2 1) (2))) ((1 . 3) (2 1 . 3) ...
-1
votes
2answers
127 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?
0
votes
1answer
122 views

Clean Lisp Readability [closed]

I am still trying to increase my lisp reading speed. As such, my first inclination is to try and name everything (usually in let bindings) to make up for my slow comprehension. In examples online, ...
1
vote
3answers
144 views

How to decompose a list like this in scheme/lisp?

Input1: (decompose '(* 1 2 3 4)) Output1: '(* 1 (* 2 (* 3 4))) Input2 (decompose '(+ 1 2 3 (* 5 6 7))) Output2 '(+ 1 (+ 2 (+ 3 (* 5 (* 6 7))))) Does anyone have ideas about this?
2
votes
2answers
180 views

Eval in Common Lisp

I am new to lisp, and here is my question: I have a list that is something like ((a ((length 3) (size 5))) (b ((length 5) (size 7))))... The above list is just a sample. What I am trying to have ...
2
votes
2answers
89 views

Overhand Shuffle with Clojure - almost

I'm trying to implement a Overhand Shuffle in Clojure as a bit of a learning exercise So I've got this code... (defn overhand [cards] (let [ card_count (count cards) _new_cards '() ...
2
votes
1answer
159 views

is the Y-Combinator a monad?

I'm trying to understand the similarities between abstracting functions using the y-combinator and the continuation monad. Intuitively, it feels to me like they have things in common, but I haven't ...
0
votes
2answers
167 views

repeating elements in common lisp [closed]

I am try to create a function with two arguments x and y which creates a list of y times repeated elements X but im getting confused on how to do it which or which method to use i think list ...
-2
votes
1answer
117 views

counting atoms and lists in a list [closed]

I am trying to write a function to calculate the number of atoms in the upper level of a list. For example, if I have a '(a b ((a) c) e), it should return 3, meaning there are 3 atoms in the upper ...
-1
votes
1answer
218 views

Quicksort in DrScheme [closed]

I'm currently in the processes of learning functional languages such as Lisp and DrScheme, but I've been asked to write a variance of the Quicksort algorithm in DrScheme. However, I'm a bit clueless ...
0
votes
0answers
458 views

Haskell or common lisp [closed]

I have a little bit of experience with a lot of programming languages: C, C++, Java, C# and Scala. However I only the know the drop dead basics like how to declare a function write, if statements, ...
2
votes
2answers
120 views

LISP global alist variable

I am new to LISP, and here is the question I have with its global variable. What I am trying to do is to create a "alist" that can store key-value pairs in a structure. Here is my sample code: (setq ...
2
votes
2answers
90 views

working with lisp fuctions

i am trying to write a function that returns a list of atoms in a list,lets say i have a list which has both atoms and a list in it and when i run the function it should return a list of atoms ...
2
votes
3answers
138 views

Expressions and arithemetics in common lisp functions

I'm trying to write a function such that P(x) for any integer x there is a list of three elements, namely the square, cube, and fourth power of n but I'm stuck on how i can combine then to make one ...
4
votes
1answer
105 views

variables in lisp programming

I am trying to write a function lets say A(n) which is supposed to have a list (the answer is n) n being any integer in the list i want when i type (A 4) it should display (the answer is 4) ...
6
votes
2answers
190 views

Scheme: Procedures that return another inner procedure

This is from the SICP book that I am sure many of you are familiar with. This is an early example in the book, but I feel an extremely important concept that I am just not able to get my head around ...
3
votes
4answers
242 views

Scheme - have a function return a function

I want to use this code in the following way: if I enter: ((function1 5) 2) where function1 executes its procedure based off the 5, and returns a function2 that executes something based on the 2. ...
22
votes
4answers
2k views

What is so powerful in Lisp's read-eval-print loop? How is it different than Python's? [closed]

I've encounter a following statement by Richard Stallman: 'When you start a Lisp system, it enters a read-eval-print loop. Most other languages have nothing comparable to read, nothing comparable ...
9
votes
2answers
223 views

When is it okay to modify a variable in functional languages?

So I'm teaching myself functional programming using Racket Scheme, and I love it so far. As an exercise for myself, I've been trying to implement a few simple tasks in a purely functional way. I know ...
3
votes
4answers
305 views

Common Lisp: compilation vs evaluation

On Emacs + Slime with sbcl, once I define a function (or more) in a file I have two choices: Evaluation: e.g. with C-M-x eval-defun Compilation: e.g. with C-c M-k compile-file The second one ...
3
votes
1answer
339 views

What are the pre-conditions of reading SICP? [closed]

right now i have got suggestions like "Simply scheme" and "The little schemer". what others are available?
5
votes
2answers
224 views

clojure 101 combining vectors into a map

I'm very new to Clojure and can't seem to find a way to do something that I'm sure is trivial. I've looked at the assoc function as I think this might be the answer, but can't make it work. What I ...
9
votes
5answers
679 views

Best way to accumulate results in a vector in Clojure? (Pure functional code seems ugly and verbose)

...Maybe imperative programming with mutable data is just drilled too deep into my brain, but I find the code for building up vectors of data in Clojure to be verbose, unwieldy, and convoluted. There ...
4
votes
1answer
94 views

xappings, xectors, xets

In the old *Lisp on the connection machine there was an interface to vectors, sets etc. that allowed computation over collections in a way similar to MapReduce (with alpha and beta as the apply and ...

1 2 3 4