Termin, który redukujesz to ( KyΩ ) gdzie K.y jest funkcją stałą λ x . y (zawsze wraca yignorując jego argument) i Ω = ( λ x . ( Xx )λ x . ( xx ) )jest terminem nieokreślającym. W pewnym sensieΩ jest ostatecznym terminem nie kończącym: zmniejsza się do siebie, tj Ω → Ω. (Make sure to work it out on paper at least once in your life.)
Applicative order reduction must reduce the argument of the function to a normal form, before it can evaluate the top-level redex. Since the argument Ω has no normal form, applicative order reduction loops infinitely. More generally, for any term M, MΩ→MΩ, and this is the reduction chosen by the applicative order strategy.
Normal order reduction starts by reducing the top-level redex (because the function Ky is already in normal form). Since Ky ignores its argument, (KyΩ)→y in one step. More generally, KyN→y for any term N, and this is the reduction chosen by the normal order strategy.
This case illustrates a more general phenomenon: applicative order reduction only ever finds a normal form if the term is strongly normalizing, whereas normal order reduction always finds the normal form if there is one. This happens because applicative order always evaluates fully arguments first, and so misses the opportunity for an argument to turn out to be unused; whereas normal order evaluates arguments as late as possible, and so always wins if the argument turns out to be unused.
(The flip side is that applicative order tends to be faster in practice, because it's relatively rare for an argument to be unused; whereas it's common for an argument to be used multiple times, and under applicative order the argument is only evaluated once. Normal order evaluates the argument as often as it's used, be it 0, 1 or many times.)