Is there a technique to remember this? I will understand it today and forget after a few weeks.
replies(4):
(Y(f))(x) = f(f(f(...(x)...)))
Or express it in python, which is still a bit weird but probably still more readable than pure LC to pretty much everybody: def Y(f):
return lambda x: f(Y(f)(x))
In your example, f(...) would have to return a function that is then applied to x.
I realize there are no non-function values in LC.