You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add four lemmas about regular grids `{[a + n * h, a + (n + 1) * h]}` with
step size `h > 0`, parameterized over a `Field K` with `FloorSemiring`:
- `Nat.floor_div_eq_of_mem_Ico`: `t ∈ Ico (a + n*h) (a + (n+1)*h) → ⌊(t-a)/h⌋₊ = n`
- `mem_Ico_Nat_floor_div`: `a ≤ t → t ∈ Ico (a + ⌊(t-a)/h⌋₊*h) ...`
- `locallyFinite_Icc_grid`: the grid `Icc (a+n*h) (a+(n+1)*h)` is locally finite
- `ContinuousOn.of_Icc_grid`: cell-wise continuity implies continuity on `Ici a`
These are used in the forward Euler convergence proof:
https://github.com/Vilin97/forward_euler
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments