Tagged Questions
The y-combinator tag has no wiki summary.
24
votes
4answers
1k 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 ...
21
votes
13answers
1k 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 ...
21
votes
9answers
2k 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 ...
18
votes
4answers
416 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 ...
18
votes
4answers
2k 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 ...
17
votes
3answers
789 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
...
14
votes
6answers
3k 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 ...
11
votes
1answer
208 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 ...
6
votes
4answers
200 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
377 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):
...
6
votes
4answers
643 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 ...
5
votes
3answers
167 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 = ...
5
votes
2answers
166 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" ...
5
votes
5answers
347 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 - ...
5
votes
2answers
275 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 ...
5
votes
1answer
206 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 ...
4
votes
1answer
159 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 ...
4
votes
2answers
174 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 ...
4
votes
2answers
332 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
...
2
votes
4answers
109 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 ...
2
votes
1answer
78 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 ...
2
votes
1answer
105 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 = ...
2
votes
3answers
144 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 ...
2
votes
3answers
91 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 ...
1
vote
2answers
334 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
72 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 ...
1
vote
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 ...
0
votes
0answers
16 views
How does Hacker News's 'more' link gets created and how deep into history does it take you?
This is a follow-up question to Why is the "more" link at Hacker News randomized? .
Does it take you to the very 30 links at the starting? I tried to dig deep into, I tried around 15 pages ...