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,21 @@
---
title: "固定点"
type: concept
tags: [math, theory, recursion]
---
## Definition
固定点Fixed Point是数学中满足 f(x*) = x* 的点 x*,在自递归优化系统中对应系统达到稳态的生成能力。
## In Self-Optimizing Generative Systems
- 自映射 Φ: G → G 的不动点 G* 满足 Φ(G*) = G*
- G* 是自洽的:其输出已编码自身改进所需的标准
- 收敛性条件:Φ 满足连续性或收缩性时,可通过迭代获得 G*
## Relationship to Y Combinator
Y Combinator 是不动点组合子Y f = f (Y f)
在自递归系统中G* = Y STEP其中 STEP ≡ λG. M(G, O(G(I), Ω))
## Connections
- [[自递归优化生成系统]] ← 应用场景
- [[Y Combinator]] ← 形式化工具