Fixed Point¶
Core Idea¶
A fixed point of a transformation is a state the rule leaves unchanged — self-consistency under update, where the rule that generates change recommends no change. It organizes any iterated or self-referential system into four questions: existence, uniqueness, stability, and basin of attraction.
How would you explain it like I'm…
The Spot That Stays
What the Rule Leaves Alone
Self-Consistent State
Broad Use¶
- Mathematics: The major fixed-point theorems underwrite existence proofs across analysis, topology, and differential equations.
- Computing: Least and greatest fixed points appear in dataflow analysis and type inference; loop termination is a stable state; recursion is built from them.
- Economics: Equilibria are fixed points of best-response or excess-demand maps, their existence proved by the fixed-point theorems.
- Psychology: A stable self-concept or habit is a fixed point of an action-outcome update loop.
- Control engineering: Steady-state operating points are fixed points of the input-state-feedback combination.
- Logic: Self-referential sentences and least/greatest fixed-point semantics arise as fixed points of monotone operators.
Clarity¶
It separates the question of existence (does any resting state exist?) from the question of attractiveness (will the dynamics arrive there?), two questions ordinary talk fuses under "is it stable?" — and forces the analyst to write down the map.
Manages Complexity¶
It compresses every "iterate until nothing changes" process into one diagnostic — find the map's fixed points, classify their stability, characterize their basins — so trajectories need tracking only when not near a fixed point.
Abstract Reasoning¶
It licenses substrate-independent inferences: a contraction certifies a unique attracting fixed point in advance, the local linearization decides stability, and recursive definitions are recognized as fixed-point problems.
Knowledge Transfer¶
- Numerics to training: The contraction-mapping guarantee transfers as stable step-size selection and the question of whether each round narrows a disagreement metric.
- Economics to modeling: Non-existence of a fixed point signals a poorly posed equilibrium concept — a general model check for a missing constraint.
- Math to policy: With multiple fixed points, the intervention shifts to the basin question — the same move in regime change, habit replacement, and norm cascades.
Example¶
Iterating x ↦ cos(x) from any start spirals into the unique Dottie number (≈ 0.739): the map is a contraction on [−1, 1], so existence and uniqueness are certified, the multiplier |−sin(x*)| < 1 makes it attracting, and the basin is the whole interval.
Relationships to Other Abstractions¶
Current abstraction Fixed Point Prime
Foundational — no parent edges in the catalog.
Children (11) — more specific cases that build on this
-
Absorbing element Domain-specific is a kind of Fixed Point
The proposed strict upward parent is
prime:fixed_point. -
Dottie number Domain-specific is a kind of Fixed Point
The proposed strict upward parent is
prime:fixed_point. -
Dudeney number Domain-specific is a kind of Fixed Point
The proposed strict upward parent is
prime:fixed_point. -
Iterated Function System Domain-specific is a kind of Fixed Point
An IFS most directly instantiates Fixed Point.
-
Schauder Fixed-Point Theorem Domain-specific is a kind of Fixed Point
Schauder Fixed-Point Theorem is a strict specialization of Fixed Point: it supplies a particular sufficient-condition schema for fixed-point existence.
- Well-founded semantics Domain-specific is a kind of Fixed Point
The proposed strict upward parent is `prime:fixed_point`.
- Equilibrium Prime is a kind of, typical Fixed Point
An equilibrium is a state with no net change under the system's update rule — a fixed point of the dynamics.
- Nash Equilibrium Prime is a kind of Fixed Point
A Nash equilibrium is by definition a fixed point of the joint best-response correspondence.
- Knaster–Kuratowski–Mazurkiewicz Lemma Domain-specific is part of Fixed Point
KKM is a standard route to Brouwer and the broader fixed-point method.
- Ontological Paradox Domain-specific is part of Fixed Point
An ontological paradox contains a fixed point because the content returned to the past must reproduce exactly the content that will later be sent back.
- Serre's Property FA Domain-specific presupposes Fixed Point
every eligible action must admit a vertex invariant under the whole group; this is the proposed minimal dependency.
Not to Be Confused With¶
- Fixed Point is not an Attractor because it is the bare relation "the rule recommends no change" — possibly repelling or a saddle — whereas a repelling fixed point is precisely not an attractor.
- Fixed Point is not Equilibrium because it is the mathematical certificate of self-consistency under a named rule, whereas equilibrium is the interpreted phenomenon of balanced forces.
- Fixed Point is not a Tipping Point because it is a resting state, whereas a tipping point is the unstable basin boundary between resting states.