Learning.history_eq_comp_history
From the authors
The history before time m is a restriction of the history before time n โฅ m.
-
๐ : Type u_1 -
๐ : Type u_2 -
๐จ : Type u_3 -
ฮฉ : Type u_4
-
O : โ โ ฮฉ โ ๐ -
A : โ โ ฮฉ โ ๐ -
Y : โ โ ฮฉ โ ๐จ -
m : โ -
n : โ
-
hmn : m โค n
history O A Y m = (fun h i => h (Fin.castLE hmn i)) โ history O A Y nNat : 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.
LE.le : {ฮฑ : Type u} โ [self : LE ฮฑ] โ ฮฑ โ ฮฑ โ PropThe less-equal relation: `x โค y` Conventions for notations in identifiers: * The recommended spelling of `โค` in identifiers is `le`.
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`.Learning.history : {๐ : Type u_1} โ
{๐ : Type u_2} โ
{๐จ : Type u_3} โ {ฮฉ : Type u_4} โ (โ โ ฮฉ โ ๐) โ (โ โ ฮฉ โ ๐) โ (โ โ ฮฉ โ ๐จ) โ (n : โ) โ ฮฉ โ Learning.Hist ๐ ๐ ๐จ nHistory of the algorithm-environment sequence before time `n`: the rounds at times `0, ..., n - 1`.Go to its page
Fin.castLE : {n m : โ} โ n โค m โ Fin n โ Fin mCoarsens a bound to one at least as large. See also `Fin.castAdd` for a version that represents the larger bound with addition rather than an explicit inequality proof.
Function.comp : {ฮฑ : Sort u} โ {ฮฒ : Sort v} โ {ฮด : Sort w} โ (ฮฒ โ ฮด) โ (ฮฑ โ ฮฒ) โ ฮฑ โ ฮดFunction composition, usually written with the infix operator `โ`. A new function is created from two existing functions, where one function's output is used as input to the other. Examples: * `Function.comp List.reverse (List.drop 2) [3, 2, 4, 1] = [1, 4]` * `(List.reverse โ List.drop 2) [3, 2, 4, 1] = [1, 4]` Conventions for notations in identifiers: * The recommended spelling of `โ` in identifiers is `comp`.
Code
lemma history_eq_comp_history {m n : โ} (hmn : m โค n) :
history O A Y m = (fun h (i : Fin m) โฆ h (Fin.castLE hmn i)) โ history O A Y nProof
rfl
Meaning last changed in v4.34.0-rc2-74-ge05e4f3 (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: 3 project declarations, 10 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.