vote up 7 vote down star
7

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 doesn't have a strong theory or math background.

(Note that I'm talking about these things : http://en.wikipedia.org/wiki/Y_combinator )

flag

51% accept rate

5 Answers

vote up 1 vote down

This is a good article:

http://www.dreamsongs.com/NewFiles/WhyOfY.pdf

The code examples are in scheme, but they shouldn't be hard to follow.

link|flag
I was hoping for something a bit more introductory than the dreamsongs one. Maybe with some more motivation about what problem they address etc. – interstar Sep 18 '08 at 22:56
vote up 3 vote down

I gave what I think is a pretty good and reasonably short explanation of the Y-combinator on the Boston Perlmongers list a while ago. The code examples were in JavaScript, but it should be easy to translate into any language that you want. Read that and get back to me on whether that explanation works for you.

link|flag
Yes, that's one of the best I've seen. Thanks – interstar Sep 18 '08 at 23:56
This is a great explanation. You could probably re-work it slightly and put the full text in this post. Thanks! – fatcat1111 Sep 29 '08 at 17:57
vote up 4 vote down

Unless you're deeply into theory, you can regard the Y combinator as a neat trick with functions, like monads.

Monads allow you to chain actions, the Y combinator allows you to define self-recursive functions.

Python has built-in support for self-recursive functions, so you can define them without Y:

> def fun():
>  print "bla"
>  fun()

> fun()
bla
bla
bla
...

fun is accessible inside fun itself, so we can easily call it.

But what if Python were different, and fun weren't accessible inside fun?

> def fun():
>   print "bla"
>   # what to do here? (cannot call fun!)

The solution is to pass fun itself as an argument to fun:

> def fun(arg): # fun receives itself as argument
>   print "bla"
>   arg(arg) # to recur, fun calls itself, and passes itself along

And Y makes that possible:

> def Y(f):
>   f(f)

> Y(fun)
bla
bla
bla
...

All it does it call a function with itself as argument.

(I don't know if this definition of Y is 100% correct, but I think it's the general idea.)

link|flag
vote up 1 vote down

Reginald Braithwaite (aka Raganwald) has been writing a great series on combinators in Ruby over at his new blog, homoiconic.

While he doesn't (to my knowledge) look at the Y-combinator itself, he does look at other combinators, for instance:

and a few posts on how you can use them.

link|flag
Yeah, I've noticed that series myself. I need to study the examples a bit more because I'm not fluent in Ruby, but it's great. – interstar Nov 13 '08 at 21:37
vote up 0 vote down

I'm pretty short on theory, but I can give you an example that sets my imagination aflutter, which may be helpful to you. The simplest interesting combinator is probably "test".

Hope you know Python

tru = lambda x,y: x
fls = lambda x,y: y 

test = lambda l,m,n: l(m,n)

Usage:

>>> test(tru,"goto loop","break")
'goto loop'
>>> test(fls,"goto loop","break")
'break'

test evaluates to the second argument if the first argument is true, otherwise the third.

>>> x = tru
>>> test(x,"goto loop","break")
'goto loop'

Entire systems can be built up from a few basic combinators.

(This example is more or less copied out of Types and Programming Languages by Benjamin C. Pierce)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.