我无法将用于翻转的 lambda 转换为 SKI 组合器(我希望这是有道理的)。这是我的转换:
/fxy.fyx
/f./x./y.fyx
/f./x.S (/y.fy) (/y.x)
/f./x.S f (/y.x)
/f./x.S f (K x)
/f.S (/x.S f) (/x.K x)
/f.S (/x.S f) K
/f.S (S (/x.S) (/x.f)) K
/f.S (S (K S) (K f)) K
S (/f.S (S (K S) (K f))) (/f.K)
S (/f.S (S (K S) (K f))) (K K)
S (S (/f.S) (/f.S (K S) (K f))) (K K)
S (S (K S) (/f.S (K S) (K f))) (K K)
S (S (K S) (S (/f.S (K S)) (/f.K f))) (K K)
S (S (K S) (S (/f.S (K S)) K)) (K K)
S (S (K S) (S (S (/f.S) (/f.K S)) K)) (K K)
S (S (K S) (S (S (K S) (/f.K S)) K)) (K K)
S (S (K S) (S (S (K S) (S (/f.K) (/f.S))) K)) (K K)
S (S (K S) (S (S (K S) (S (K K) (K S))) K)) (K K)
如果我在 B、C、K、W 系统中正确理解,C 是翻转的,它在 SKI 术语中的定义是S (S (K (S (K S) K)) S) (K K)
. 显然我的答案与 C 组合器不同......这是我用于转换的规则:
K y = /x.y - K combinator
(SKK) = /x.x - I combinator
(S (/x.f) (/x.g)) = (/x.fg) - S combinator
y = (/x.yx) - eta reduction
/x./y.f = /xy.f - currying
Note that the S rule can convert longer expressions - for example, λ x.abcdeg can be converted by setting f = abcde.
我错过了什么?