The Y combinator is a higher-order function that allows a function that does not know its own name to call itself. It is the fundamental basis of recursion.
1
vote
2answers
102 views
Scheme - fibonacci series with nested lambda
Inspired this post .
I trying to implement a fibonacci series with nested lambda -
(( (lambda (x) (x x)) ;; evaluate x on x
((lambda (fibo-gen)) ;; fibo-gen get another func as arg
...
7
votes
2answers
453 views
Defining a stack data structure and its main operations in lambda calculus
I'm trying to define a stack data structure in lambda calculus, using fixed point combinators. I am trying to define two operations, insertion and removal of elements, so, push and pop, but the only ...
3
votes
1answer
204 views
factorial function for Church numerals
I'm trying to implement the factorial lambda expression as described in the book Lambda-calculus, Combinators and Functional Programming
The way it's described there is :
fact = ...
10
votes
2answers
256 views
I couldn't understand the Y-Combinator, so I tried to implement it and ended up with something shorter, which worked. How is that possible?
I couldn't understand the Y-combinator, so I tried to implement a function that enabled recursion without native implementation. After some thinking, I ended up with this:
Y = λx.(λv.(x x) v)
Which ...
2
votes
2answers
166 views
fixed point combinator in lisp
;; compute the max of a list of integers
(define Y
(lambda (w)
((lambda (f)
(f f))
(lambda (f)
(w (lambda (x)
((f f) x)))))))
((Y
(lambda (max)
(lambda (l)
...
14
votes
2answers
297 views
Why inductive datatypes forbid types like `data Bad a = C (Bad a -> a)` where the type recursion occurs in front of ->?
Agda manual on Inductive Data Types and Pattern Matching states:
To ensure normalisation, inductive occurrences must appear in strictly positive positions. For instance, the following datatype is ...
1
vote
1answer
207 views
Unable to get implementation of Y combinator working
Here's the code (also here):
#lang racket
(define poorY
((lambda length
(lambda (ls)
(cond
[(null? ls) 0]
[else (add1 ((length length) (cdr ls)))])))
(lambda length
...
7
votes
3answers
253 views
Y combinator: Some functions do not have fixed points
The Wikipedia article on the Y combinator provides the following JavaScript implementation of the Y combinator:
function Y(f) {
return (
(function (x) {
return f(function (v) ...
15
votes
2answers
639 views
Y combinator discussion in “The Little Schemer”
So I've spent a lot of time reading and re-reading the ending of chapter 9 in The Little Schemer, where the applicative Y combinator is developed for the "length" function. I think my confusion boils ...
2
votes
1answer
125 views
convert one big quote to string/list in scheme
i have this assignment to do, where i need to parse a wrong written recursive procedure, and fix it.
for example:
This:
(let ((fib (lambda (n)
(cond ((= n 0) 1)
...
2
votes
2answers
266 views
Does Python have NO need for the Y-Combinator?
After an hour of trying to understand the Y-Combinator... i finally got it, mostly but then i realized that the same thing can be achieved without it... although I'm not sure if i fully understand ...
4
votes
1answer
594 views
Scala: (Int, Int) => Int doesn't match (Int, Int) => Int
I'm trying to use the y-combinator to define gcd in scala:
object Main {
def y[A,B]( f : (A => B) => A => B ) : A => B = f(y(f))
def gcd = y[(Int,Int),Int]( (g) => (x,y) => if ...
19
votes
4answers
613 views
Why is the type of this function (a -> a) -> a?
Why is the type of this function (a -> a) -> a?
Prelude> let y f = f (y f)
Prelude> :t y
y :: (t -> t) -> t
Shouldn't it be an infinite/recursive type?
I was going to try and put into ...
4
votes
4answers
333 views
Recursive Functions, Stack Overflows, and Y-Combinators
I have a recursive function (in C#) that I need to call about 800 million times; this would obviously normally result in a stack overflow after about the 900th call. I've kicked this out to multiple ...
6
votes
3answers
394 views
Y combinator, Infinite types and Anonymous recursion in Haskell
I was trying to solve the maximal subsequence sum problem and came up with a neato solution
msss :: (Ord a, Num a) => [a] -> a
msss = f 0 0
f gmax _ [] = gmax
f gmax lmax (x:xs) =
let g = ...
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 ...
2
votes
1answer
326 views
Fixed point of K combinator
The K combinator is K := (λxy.x) and the fixed point combinator is Y := λf.(λx.f x x) (λx.f x x). I tried to calculate YK:
YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I
So because YK is the ...
11
votes
1answer
296 views
Have I implemented Y-combinator using C# dynamic, and if I haven't, what is it?
My brain seems to be in masochistic mode, so after being drowned in this, this and this, it wanted to mess around with some DIY in C#.
I came up with the following, which I don't think is the ...
3
votes
1answer
311 views
Expressing Y in term of SKI-Combinators in JavaScript
I was fiddling with Cominators in JavaScript and was being proud of (hopefully) getting S to work when I stumbled upon Wikipedia saying: "The Y combinator can be expressed in the SKI-calculus as: Y = ...
6
votes
4answers
242 views
Y-combinator in D?
I'm trying to learn the Y-combinator better (I sort of understand it in Scheme) and implement it in D 2.0, and I'm failing pretty miserably:
auto fact = delegate(uint delegate(uint) recurse)
{
...
6
votes
3answers
379 views
Transforming a function that computes a fixed point
I have a function which computes a fixed point in terms of iterate:
equivalenceClosure :: (Ord a) => Relation a -> Relation a
equivalenceClosure = fst . List.head -- "guaranteed" ...
2
votes
3answers
239 views
Weird error when using scoped type variables and the y combinator in haskell
So I'm playing around with the y-combinator and anonymous functions, and I ran into this weird error:
Couldn't match expected type `t0 -> t1 -> t2'
with actual type `forall b. b ...
5
votes
5answers
452 views
Does “Anonymous Recursion” work in .NET? It does in Mono
I surfed into this site a few days ago on "Anonymous Recursion in C#". The thrust of the article is that the following code will not work in C#:
Func<int, int> fib = n => n > 1 ? fib(n - ...
32
votes
3answers
2k views
How do I use fix, and how does it work?
I was a bit confused by the documentation for fix (although I think I understand what it's supposed to do now), so I looked at the source code. That left me more confused:
fix :: (a -> a) -> a
...
8
votes
3answers
781 views
Alternative Y combinator definition
I've spent some time wrapping my head around the Y combinator lately, and I've found that it is usually defined (more or less) as follows (this is in C#, but the language of choice isn't important):
...
5
votes
2answers
654 views
Y Combinator in Scheme using Define
In order to learn what a fixed-point combinator is and is used for, I wrote my own. But instead of writing it with strictly anonymous functions, like Wikipedia's example, I just used define:
(define ...
2
votes
3answers
104 views
can i use y-combinator to get object reference for this closure?
this closure works:
var o = {
foo: 5
};
o.handler = function(obj){
return function() {
alert(obj.foo);
};
}(o);
o.handler(); //alert('5')
is it possible to define handler ...
12
votes
4answers
3k views
Y Combinator in Haskell
Is it possible to write the Y Combinator in Haskell?
It seems like it would have an infinitely recursive type.
Y :: f -> b -> c
where f :: (f -> b -> c)
or something. Even a simple ...
1
vote
2answers
500 views
How would you implement a fixed-point operator (Y combinator) in F#?
I'm using F# to create a lambda calculus. I am currently stuck trying to figure out how I would implement the fixed-point operator (also called Y combinator).
I think everything else is in order. ...
1
vote
0answers
105 views
Y Combinator's most successful investment? [closed]
Curios to know, which of Y Combinators investments has financially been the most successful.
Seems like everyone points our Reddit.com, but from what I gathered - the site wasn't really sold for all ...
4
votes
2answers
242 views
Applying the Y-Combinator to a recursive function with two arguments in Clojure?
Doing the Y-Combinator for a single argument function such as factorial or fibonacci in Clojure is well documented:
http://rosettacode.org/wiki/Y_combinator#Clojure
My question is - how do you do it ...
5
votes
1answer
345 views
Fixed point combinator usage? Why a stack overflow here?
I am confused about something. I wanted to generate an example (in Clojure) demonstrating how a fixed point combinator could be used to evaluate the fixed point of a sequence that mathematically ...
24
votes
14answers
2k views
Rosetta Stone: Y-combinator
The Y-combinator is defined as:
Y = λf. (λx. f (x x)) (λx. f (x x))
Using this combinator, you can write recursive lambda functions or intercept recursive methods with custom code.
How is the ...
32
votes
4answers
2k views
How do I define y-combinator without “let rec”?
In almost all examples, a y-combinator in ML-type languages is written like this:
let rec y f x = f (y f) x
let factorial = y (fun f -> function 0 -> 1 | n -> n * f(n - 1))
This works as ...
5
votes
2answers
444 views
Recursive lambdas in F#
Take this example code (ignore it being horribly inefficient for the moment)
let listToString (lst:list<'a>) = ;;' prettify fix
let rec inner (lst:list<'a>) buffer = ;;' prettify fix
...
24
votes
4answers
3k views
Y-Combinator Practical Example
I've been reading a bit lately about functional programming and I am trying to grok the Y-Combinator. I understand that you can use the Y-Combinator to effectively implement recursion in a language ...
20
votes
7answers
6k views
Can a lambda function call itself recursively in Python?
A regular function can contain a call to itself in its definition, no problem. I can't figure out how to do it with a lambda function though for the simple reason that the lambda function has no name ...
3
votes
3answers
2k views
Fixed point combinators in C++
I'm interested in actual examples of using fixed point combinators (such as the y-combinator in C++. Have you ever used a fixed point combinator with egg or bind in real live code?
I found this ...
26
votes
9answers
4k views
Good explanation of “Combinators” (For non mathematicians)
Anyone got a good explanation of "combinators" (Y-combinators etc. and NOT the company)
I'm looking for one for the practical programmer who understands recursion and higher-order functions, but ...

