What is a y-combinator? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T04:10:20Zhttp://stackoverflow.com/feeds/question/93526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/93526/what-is-a-y-combinator26What is a y-combinator?Turbulent Intellect2008-09-18T15:21:02Z2009-11-15T22:16:38Z
<p>A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.</p>
<p>What is a y-combinator?
How do they work?
What are they good for?
Are they useful in procedural languages?</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/93538#9353817Answer by Nicholas Mancuso for What is a y-combinator?Nicholas Mancuso2008-09-18T15:23:03Z2008-09-18T16:22:30Z<p>If you're ready for a long read, <a href="http://mvanier.livejournal.com/2897.html" rel="nofollow">Mike Vanier has a <em>great</em> explaination</a>. Long story short, it allows you to implement recursion in a language that doesn't necessarily support it natively.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/93550#93550-1Answer by Thomas Wagner for What is a y-combinator?Thomas Wagner2008-09-18T15:24:58Z2008-09-18T15:24:58Z<p>A fixed point combinator (or fixed-point operator) is a higher-order function that computes a fixed point of other functions. This operation is relevant in programming language theory because it allows the implementation of recursion in the form of a rewrite rule, without explicit support from the language's runtime engine. (src Wikipedia)</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/93567#935672Answer by swilliams for What is a y-combinator?swilliams2008-09-18T15:27:11Z2008-09-18T15:27:11Z<p>Briefly, it allows you to use anonymous recursion without assuming your host language supports it.</p>
<p><a href="http://blog.jcoglan.com/2008/01/10/deriving-the-y-combinator/" rel="nofollow">Here's probably the best example of it I have seen</a>. For myself personally, I haven't found it to be super useful in real world applications, but it is one of those things that once you wrap your head around, makes you a little smarter.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/93573#935731Answer by Zach for What is a y-combinator?Zach2008-09-18T15:27:32Z2008-09-19T04:11:47Z<p>y-combinator in <a href="http://blog.jcoglan.com/2008/01/10/deriving-the-y-combinator/" rel="nofollow">JavaScript</a>:</p>
<pre><code>var Y = function(f) {
return (function(g) {
return g(g);
})(function(h) {
return function() {
return f(h(h)).apply(null, arguments);
};
});
};
var factorial = Y(function(recurse) {
return function(x) {
return x == 0 ? 1 : x * recurse(x-1);
};
});
factorial(5) // -> 120
</code></pre>
<p><strong>Edit</strong>:
I learn a lot from looking at code, but this one is a bit tough to swallow without some background - sorry about that. With some general knowledge presented by other answers, you can begin to pick apart what is happening. The Y function is the "y-combinator". Now take a look at the <code>var factorial</code> line where Y is used. Notice you pass a function to it that has a parameter (in this example, <code>recurse</code>) that is also used later on in the inner function. The parameter name basically becomes the name of the inner function allowing it to perform a recursive call (since it uses <code>recurse()</code> in it's definition.) The y-combinator performs the magic of associating the otherwise anonymous inner function with the parameter name of the function passed to Y. For the full explanation of how Y does the magic, checked out the linked article (not by me btw.)</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/94056#9405624Answer by Turbulent Intellect for What is a y-combinator?Turbulent Intellect2008-09-18T16:15:48Z2008-09-18T18:38:49Z<p>A Y-combinator is a "functional" (a function that operates on other functions) that enables recursion, when you can't refer to the function from within itself. In computer-science theory, it <strong>generalizes recursion</strong>, abstracting its implementation, and thereby separating it from the actual work of the function in question. The benefit of not needing a compile-time name for the recursive function is sort of a bonus. =)</p>
<p>This is applicable in languages that support lambda functions. The <a href="http://en.wikipedia.org/wiki/Expression_(programming)" rel="nofollow">expression</a>-based nature of lambdas usually means that they cannot refer to themselves by name. And working around this by way of declaring the variable, refering to it, then assigning the lambda to it, to complete the self-reference loop, is brittle. The lambda variable can be copied, and the original variable re-assigned, which breaks the self-reference.</p>
<p>Y-combinators are cumbersome to implement, and often to use, in <a href="http://en.wikipedia.org/wiki/Type_system#Type_checking" rel="nofollow">static-typed</a> languages (which <a href="http://en.wikipedia.org/wiki/Procedural_programming" rel="nofollow">procedural languages</a> often are), because usually typing restrictions require the number of arguments for the function in question to be known at compile time. This means that a y-combinator must be written for any argument count that one needs to use.</p>
<p>Below is an example of how the usage and working of a Y-Combinator, in C#.</p>
<p>Using a Y-combinator involves an "unusual" way of constructing a recursive function. First you must write your function as a piece of code that calls a pre-existing function, rather than itself:</p>
<pre><code>// Factorial, if func does the same thing as this bit of code...
x == 0 ? 1: x * func(x - 1);
</code></pre>
<p>Then you turn that into a function that takes a function to call, and returns a function that does so. This is called a functional, because it takes one function, and performs an operation with it that results in another function.</p>
<pre><code>// A function that creates a factorial, but only if you pass in
// a function that does what the inner function is doing.
Func<Func<Double, Double>, Func<Double, Double>> fact =
(recurs) =>
(x) =>
x == 0 ? 1 : x * recurs(x - 1);
</code></pre>
<p>Now you have a function that takes a function, and returns another function that sort of looks like a factorial, but instead of calling itself, it calls the argument passed into the outer function. How do you make this the factorial? Pass the inner function to itself. The Y-Combinator does that, by being a function with a permanent name, which can introduce the recursion.</p>
<pre><code>// One-argument Y-Combinator.
public static Func<T, TResult> Y<T, TResult>(Func<Func<T, TResult>, Func<T, TResult>> F)
{
return
t => // A function that...
F( // Calls the factorial creator, passing in...
Y(F) // The result of this same Y-combinator function call...
// (Here is where the recursion is introduced.)
)
(t); // And passes the argument into the work function.
}
</code></pre>
<p>Rather than the factorial calling itself, what happens is that the factorial calls the factorial generator (returned by the recursive call to Y-Combinator). And depending on the current value of t the function returned from the generator will either call the generator again, with t - 1, or just return 1, terminating the recursion.</p>
<p>It's complicated and cryptic, but it all shakes out at run-time, and the key to its working is "deferred execution", and the breaking up of the recursion to span two functions. The inner F is <strong>passed as an argument</strong>, to be called in the next iteration, <strong>only if necessary</strong>.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/99581#995811Answer by Scott for What is a y-combinator?Scott2008-09-19T04:13:54Z2009-11-15T22:16:38Z<p>It's a <a href="http://ycombinator.com/index.html" rel="nofollow">Seeding Angel investor company</a> for Startups!!!!!</p>
<p>A great one should I say!</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/490559#4905590Answer by Robert Gould for What is a y-combinator?Robert Gould2009-01-29T05:18:30Z2009-11-15T22:15:41Z<p>For cross referencing here is an implementation of a <a href="http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks#490558"> Y Combinator in Lua</a>.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator/1077620#10776200Answer by z5h for What is a y-combinator?z5h2009-07-03T03:05:25Z2009-07-03T03:05:25Z<p>I have written a sort of "idiots guide" to the Y-Combinator in both Clojure and Scheme in order to help myself come to grips with it. They are influenced by material in "The Little Schemer"</p>
<p><a href="http://bolusmjak.posterous.com/tag/ycombinator" rel="nofollow">http://bolusmjak.posterous.com/tag/ycombinator</a></p>
<p>Both tutorials are code interspersed with comments and should be cut & pastable into your favourite editor.</p>