Files
nexus/wiki/concepts/固定点.md
2026-04-15 16:33:26 +08:00

741 B
Raw Blame History

title, type, tags
title type tags
固定点 concept
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