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.
