Auto-sync

This commit is contained in:
2026-04-15 16:33:26 +08:00
parent d3e7fcf81f
commit 22c7a6e4d9
80 changed files with 1473 additions and 240 deletions

View File

@@ -0,0 +1,22 @@
---
title: "Y Combinator"
type: concept
tags: [cs, lambda-calculus, recursion]
---
## Definition
Y Combinator不动点组合子是 λ-calculus 中的标准递归机制Y ≡ λf.(λx.f(x,x))(λx.f(x,x)),满足 Y f = f (Y f)。
## In Self-Optimizing Systems
在自递归优化生成系统中,稳定生成能力 G* 可表达为:
G* = Y STEP
其中 STEP ≡ λG. M(G, O(G(I), Ω))
验证STEP G* = M(G*, O(G*(I), Ω)) = G*(由固定点定义)
## Core Insight
Y Combinator 使无名字函数获得自参照能力,从而表达递归的生成器更新。
## Connections
- [[固定点]] ← 数学对应
- [[自递归优化生成系统]] ← 应用场景