K组合器的不动点

发布于 2024-12-14 00:30:47 字数 357 浏览 2 评论 0原文

K 组合器为 K := (λxy.x),定点组合器为 Y := λf.(λx.fxx) (λx.fxx)。我试图计算YK

YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I

所以因为YKK的固定点:

K(YK) = YK
KI = I
KIe = Ie = e

对于任何e。但是 KIe 应该等于 I

The K combinator is K := (λxy.x) and the fixed point combinator is Y := λf.(λx.f x x) (λx.f x x). I tried to calculate YK:

YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I

So because YK is the fixed point of K:

K(YK) = YK
KI = I
KIe = Ie = e

for any e. But KIe should be equal to I!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼趣 2024-12-21 00:30:47

您没有从 Y-combinator 的正确定义开始。它应该是 Y := λf.(λx.f (xx)) (λx.f (xx)) (注意 x x 两边的括号)。
由于 lambda 演算是左结合的fx x 是等于(fx) x,这显然不起作用。

使用正确的定义,我们得到

Y K := (λf.(λx.f (x x)) (λx.f (x x))) K
       (λx.K (x x)) (λx.K (x x))
       K ((λx.K (x x)) (λx.K (x x)))
       K (Y K)

由于 YK 不会简化为 I,因此不允许进行以下替换。

K (Y K) = Y K
K I = I

所以,KI e 很简单

K I e := (K I) e
         ((λx.λy.x) I) e
         (λy.I) e
         I

You're not starting with the correct definition of the Y-combinator. It should be Y := λf.(λx.f (x x)) (λx.f (x x)) (note the parentheses around x x).
Since lambda-calculus is left-associative, f x x is equal to (f x) x, which obviously doesn't work.

Using the correct definition, we get

Y K := (λf.(λx.f (x x)) (λx.f (x x))) K
       (λx.K (x x)) (λx.K (x x))
       K ((λx.K (x x)) (λx.K (x x)))
       K (Y K)

Since Y K doesn't reduce to I, the following substitution is not allowed.

K (Y K) = Y K
K I = I

So, K I e is simply

K I e := (K I) e
         ((λx.λy.x) I) e
         (λy.I) e
         I
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文