Fixed points of a self-map #
In this file we define the set Function.fixedPoints of fixed points of a function f : α → α.
The related predicate IsFixedPt is defined in Mathlib.Logic.Function.Defs.
Tags #
fixed point
The set of fixed points of a map f : α → α.
Equations
- Function.fixedPoints f = {x : α | Function.IsFixedPt f x}
Instances For
@[implicit_reducible]
instance
Function.fixedPoints.decidable
{α : Type u_1}
[DecidableEq α]
(f : α → α)
(x : α)
:
Decidable (x ∈ fixedPoints f)
Equations
@[simp]