show/hide this revision's text 3 Clarifications, simplifications

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 generalizes recursion, 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. =)

Y-combinators are cumbersome to implement, and often to use, in static-typed languages (which procedural languages often are), because usually compiler 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.

Y(F) // The result of this same Y-combinator function callcall... (t); // And passes the argument into the factorialwork function.

Rather than the factorial calling itself, what happens is that the factorial calls Y-combinator, which calls the factorial generator again, which (returned by the recursive call to Y-Combinator). And depending on the current value of t the function returned from the generator will either generate a function to call the factorial generator again, with t - 1, or a function that just returns return 1. When this termination point is reached, the Y will not be called again, terminating the recursion.

It's complicated and cryptic, but it all shakes out at run-time, and the key to its working is "deferred execution". Without deferred execution, and the Y-combinator calling itself would never result in a function that doesn't call itself. I.e., infinite breaking up of the recursion to span two functions. But because the F(Y(F)) expression that generates the factorial isn't executed until the t The inner F is provided passed as wellan argument, it all shakes out at run-timeto be called in the next iteration, only if necessary.

show/hide this revision's text 2 clarification

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.

This is applicable in languages that support lambda functions. The expression-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.

Y-combinators are cumbersome to implement, and often to use, in static-typed languages (which procedural languages often are), because usually compiler 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.

Below is an example of how the usage and working of a Y-Combinator, in C#.

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:

// Factorial, if func does the same thing as this bit of code...
x == 0 ? 1: x * func(x - 1);

Then you create turn that into a function that takes a function for this bit of code 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.

// 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);

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.

// 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 factorial.
}

Rather than the factorial calling itself, what happens is that the factorial calls Y-combinator, which calls the factorial generator again, which depending on the current value of t will either generate a function to call the factorial again, or a function that just returns 1. When this termination point is reached, the Y will not be called again, terminating the recursion.

It's complicated and cryptic, and the key to its working is "deferred execution". Without deferred execution, the Y-combinator calling itself would never result in a function that doesn't call itself. I.e., infinite recursion. But because the F(Y(F)) expression that generates the factorial isn't executed until the t is provided as well, it all shakes out at run-time.

show/hide this revision's text 1

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.

This is applicable in languages that support lambda functions. The expression-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.

Y-combinators are cumbersome to implement, and often to use, in static-typed languages (which procedural languages often are), because usually compiler 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.

Below is an example of how the usage and working of a Y-Combinator, in C#.

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:

// Factorial, if func does the same thing as this bit of code...
x == 0 ? 1: x * func(x - 1);

Then you create a function that takes a function for this bit of code 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.

// 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);

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.

// 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 factorial.
}

Rather than the factorial calling itself, what happens is that the factorial calls Y-combinator, which calls the factorial generator again, which depending on the current value of t will either generate a function to call the factorial again, or a function that just returns 1. When this termination point is reached, the Y will not be called again, terminating the recursion.

It's complicated and cryptic, and the key to its working is "deferred execution". Without deferred execution, the Y-combinator calling itself would never result in a function that doesn't call itself. I.e., infinite recursion. But because the F(Y(F)) expression that generates the factorial isn't executed until the t is provided as well, it all shakes out at run-time.