ProbabilityTheory.Kernel.instIsMarkovKernelForallValNatMemFinsetIicHAddOfNatIicOfFin
Instance
No docstring.
Given
-
X : ā ā Type u_2(n : ā) ā MeasurableSpace (X n)A measurable space is a space equipped with a Ļ-algebra. -
Īŗ' : (n : ā) ā Kernel ((i : Fin n) ā X āi) (X n)A kernel from a measurable spaceαto another measurable spaceβis a measurable functionĪŗ : α ā Measure β.ā (n : ā), IsMarkovKernel (Īŗ' n)A kernel is a Markov kernel if every measure in its image is a probability measure. -
n : ā
Then
IsMarkovKernel (iicOfFin Īŗ' n)MeasurableSpace : Type u_6 ā Type u_6A measurable space is a space equipped with a Ļ-algebra.
Nat : TypeThe natural numbers, starting at zero. This type is special-cased by both the kernel and the compiler, and overridden with an efficient implementation. Both use a fast arbitrary-precision arithmetic library (usually [GMP](https://gmplib.org/)); at runtime, `Nat` values that are sufficiently small are unboxed.
ProbabilityTheory.IsMarkovKernel : {α : Type u_1} ā
{β : Type u_2} ā {mα : MeasurableSpace α} ā {mβ : MeasurableSpace β} ā ProbabilityTheory.Kernel α β ā PropA kernel is a Markov kernel if every measure in its image is a probability measure.
ProbabilityTheory.Kernel : (α : Type u_1) ā (β : Type u_2) ā [MeasurableSpace α] ā [MeasurableSpace β] ā Type (max u_1 u_2)A kernel from a measurable space `α` to another measurable space `β` is a measurable function `Īŗ : α ā Measure β`. The measurable space structure on `MeasureTheory.Measure β` is given by `MeasureTheory.Measure.instMeasurableSpace`. A map `Īŗ : α ā MeasureTheory.Measure β` is measurable iff `ā s : Set β, MeasurableSet s ā Measurable (fun a ⦠κ a s)`.
Fin : ā ā TypeNatural numbers less than some upper bound. In particular, a `Fin n` is a natural number `i` with the constraint that `i < n`. It is the canonical type with `n` elements.
ProbabilityTheory.Kernel.iicOfFin : {X : ā ā Type u_2} ā
[inst : (n : ā) ā MeasurableSpace (X n)] ā
((n : ā) ā ProbabilityTheory.Kernel ((i : Fin n) ā X āi) (X n)) ā
(n : ā) ā ProbabilityTheory.Kernel ((i : ā„(Finset.Iic n)) ā X āi) (X (n + 1))Kernels indexed by `Iic n` (as needed for `Kernel.traj`), obtained from kernels indexed by `Fin n`: the kernel `Īŗ' (n + 1)` on `Ī i : Fin (n + 1), X i` is seen as a kernel on `Ī i : Iic n, X i`.Go to its page
Code
instance (n : ā) : IsMarkovKernel (iicOfFin Īŗ' n)
Proof
by unfold iicOfFin; infer_instance
Meaning last changed in v4.34.0-rc2-76-g565f652 (2026-09-10).
Self-contained, with its dependencies inlined and proofs replaced by sorry: download the raw file Ā· open it in the Lean web editor.
Dependency graph
Audit surface: 2 project declarations, 38 external constants
ā Proved: no sorry anywhere in its closure
This is the tool's own reading of one build's recorded axioms, and it is not robust against an author who wants it to pass. Checking meant to be relied on should go through Comparator, which replays the proof through the kernel from an export against an explicit list of permitted axioms.