MeasurableEquiv.finSuccPiIic_apply
No docstring.
-
X : â â Type u_1(n : â) â MeasurableSpace (X n)A measurable space is a space equipped with a Ï-algebra. -
n : â -
h : (i : Fin (n + 1)) â X âi -
i : â¥(Finset.Iic n)
(finSuccPiIic X n) h i = h âšâi, â¯â©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.
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.
HAdd.hAdd : {α : Type u} â {β : Type v} â {γ : outParam (Type w)} â [self : HAdd α β γ] â α â β â γ`a + b` computes the sum of `a` and `b`. The meaning of this notation is type-dependent. Conventions for notations in identifiers: * The recommended spelling of `+` in identifiers is `add`.
Subtype : {α : Sort u} â (α â Prop) â Sort (max 1 u)All the elements of a type that satisfy a predicate.
`Subtype p`, usually written `{ x : α // p x }` or `{ x // p x }`, contains all elements `x : α` for
which `p x` is true. Its constructor is a pair of the value and the proof that it satisfies the
predicate. In run-time code, `{ x : α // p x }` is represented identically to `α`.
There is a coercion from `{ x : α // p x }` to `α`, so elements of a subtype may be used where the
underlying type is expected.
Examples:
* `{ n : Nat // n % 2 = 0 }` is the type of even numbers.
* `{ xs : Array String // xs.size = 5 }` is the type of arrays with five `String`s.
* Given `xs : List α`, `List { x : α // x â xs }` is the type of lists in which all elements are
contained in `xs`.
Conventions for notations in identifiers:
* The recommended spelling of `{ x // p x }` in identifiers is `subtype`.Finset.Iic : {α : Type u_1} â [inst : Preorder α] â [LocallyFiniteOrderBot α] â α â Finset αThe finset $(-â, b]$ of elements `x` such that `x †b`. Basically `Set.Iic b` as a finset.
Eq : {α : Sort u_1} â α â α â PropThe equality relation. It has one introduction rule, `Eq.refl`.
We use `a = b` as notation for `Eq a b`.
A fundamental property of equality is that it is an equivalence relation.
```
variable (α : Type) (a b c d : α)
variable (hab : a = b) (hcb : c = b) (hcd : c = d)
example : a = d :=
Eq.trans (Eq.trans hab (Eq.symm hcb)) hcd
```
Equality is much more than an equivalence relation, however. It has the important property that every assertion
respects the equivalence, in the sense that we can substitute equal expressions without changing the truth value.
That is, given `h1 : a = b` and `h2 : p a`, we can construct a proof for `p b` using substitution: `Eq.subst h1 h2`.
Example:
```
example (α : Type) (a b : α) (p : α â Prop)
(h1 : a = b) (h2 : p a) : p b :=
Eq.subst h1 h2
example (α : Type) (a b : α) (p : α â Prop)
(h1 : a = b) (h2 : p a) : p b :=
h1 âž h2
```
The triangle in the second presentation is a macro built on top of `Eq.subst` and `Eq.symm`, and you can enter it by typing `\t`.
For more information: [Equality](https://lean-lang.org/theorem_proving_in_lean4/quantifiers_and_equality.html#equality)
Conventions for notations in identifiers:
* The recommended spelling of `=` in identifiers is `eq`.MeasurableEquiv.finSuccPiIic : (X : â â Type u_2) â
[inst : (n : â) â MeasurableSpace (X n)] â (n : â) â ((i : Fin (n + 1)) â X âi) âáµ ((i : â¥(Finset.Iic n)) â X âi)Measurable equivalence between `Î i : Fin (n + 1), X i` and `Î i : Iic n, X i`.Go to its page
Fin.mk : {n : â} â (val : â) â val < n â Fin nCreates a `Fin n` from `i : Nat` and a proof that `i < n`.
Code
lemma finSuccPiIic_apply (n : â) (h : Î i : Fin (n + 1), X i) (i : Iic n) :
finSuccPiIic X n h i = h âši.1, Nat.lt_succ_of_le (mem_Iic.mp i.2)â©Proof
rfl
New in v4.34.0-rc2-39-gb743f31 (2026-09-08), and its meaning has not changed since.
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: 1 project declarations, 36 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.