Documentation

Mathlib.Data.Nat.Interval

Finite intervals of naturals #

This file proves that is a LocallyFiniteOrder and calculates the cardinality of its intervals as finsets and fintypes.

TODO #

Some lemmas can be generalized using OrderedGroup, CanonicallyOrderedMonoid or SuccOrder and subsequently be moved upstream to Data.Finset.LocallyFinite.

Equations
  • One or more equations did not get rendered due to their size.
theorem Nat.Icc_eq_range' (a : ) (b : ) :
Finset.Icc a b = { val := ↑(List.range' a (b + 1 - a)), nodup := (_ : List.Nodup (List.range' a (b + 1 - a))) }
theorem Nat.Ico_eq_range' (a : ) (b : ) :
Finset.Ico a b = { val := ↑(List.range' a (b - a)), nodup := (_ : List.Nodup (List.range' a (b - a))) }
theorem Nat.Ioc_eq_range' (a : ) (b : ) :
Finset.Ioc a b = { val := ↑(List.range' (a + 1) (b - a)), nodup := (_ : List.Nodup (List.range' (a + 1) (b - a))) }
theorem Nat.Ioo_eq_range' (a : ) (b : ) :
Finset.Ioo a b = { val := ↑(List.range' (a + 1) (b - a - 1)), nodup := (_ : List.Nodup (List.range' (a + 1) (b - a - 1))) }
theorem Nat.uIcc_eq_range' (a : ) (b : ) :
Finset.uIcc a b = { val := ↑(List.range' (min a b) (max a b + 1 - min a b)), nodup := (_ : List.Nodup (List.range' (min a b) (max a b + 1 - min a b))) }
@[simp]
theorem Nat.card_Icc (a : ) (b : ) :
Finset.card (Finset.Icc a b) = b + 1 - a
@[simp]
theorem Nat.card_Ico (a : ) (b : ) :
@[simp]
theorem Nat.card_Ioc (a : ) (b : ) :
@[simp]
theorem Nat.card_Ioo (a : ) (b : ) :
Finset.card (Finset.Ioo a b) = b - a - 1
@[simp]
theorem Nat.card_uIcc (a : ) (b : ) :
Finset.card (Finset.uIcc a b) = Int.natAbs (b - a) + 1
@[simp]
theorem Nat.card_Iic (b : ) :
@[simp]
theorem Nat.card_Iio (b : ) :
theorem Nat.card_fintypeIcc (a : ) (b : ) :
Fintype.card ↑(Set.Icc a b) = b + 1 - a
theorem Nat.card_fintypeIco (a : ) (b : ) :
Fintype.card ↑(Set.Ico a b) = b - a
theorem Nat.card_fintypeIoc (a : ) (b : ) :
Fintype.card ↑(Set.Ioc a b) = b - a
theorem Nat.card_fintypeIoo (a : ) (b : ) :
Fintype.card ↑(Set.Ioo a b) = b - a - 1
theorem Nat.Icc_pred_right (a : ) {b : } (h : 0 < b) :
Finset.Icc a (b - 1) = Finset.Ico a b
@[simp]
theorem Nat.Ico_succ_singleton (a : ) :
Finset.Ico a (a + 1) = {a}
@[simp]
theorem Nat.Ico_pred_singleton {a : } (h : 0 < a) :
Finset.Ico (a - 1) a = {a - 1}
@[simp]
theorem Nat.Ioc_succ_singleton (b : ) :
Finset.Ioc b (b + 1) = {b + 1}
theorem Nat.Ico_succ_right_eq_insert_Ico {a : } {b : } (h : a b) :
Finset.Ico a (b + 1) = insert b (Finset.Ico a b)
theorem Nat.Ico_insert_succ_left {a : } {b : } (h : a < b) :
theorem Nat.image_sub_const_Ico {a : } {b : } {c : } (h : c a) :
Finset.image (fun x => x - c) (Finset.Ico a b) = Finset.Ico (a - c) (b - c)
theorem Nat.Ico_image_const_sub_eq_Ico {a : } {b : } {c : } (hac : a c) :
Finset.image (fun x => c - x) (Finset.Ico a b) = Finset.Ico (c + 1 - b) (c + 1 - a)
theorem Nat.mod_injOn_Ico (n : ) (a : ) :
Set.InjOn (fun x => x % a) ↑(Finset.Ico n (n + a))
theorem Nat.image_Ico_mod (n : ) (a : ) :
Finset.image (fun x => x % a) (Finset.Ico n (n + a)) = Finset.range a

Note that while this lemma cannot be easily generalized to a type class, it holds for ℤ as well. See Int.image_Ico_emod for the ℤ version.

theorem Nat.multiset_Ico_map_mod (n : ) (a : ) :
Multiset.map (fun x => x % a) (Multiset.Ico n (n + a)) = Multiset.range a
theorem Nat.decreasing_induction_of_not_bddAbove {P : Prop} (h : (n : ) → P (n + 1)P n) (hP : ¬BddAbove {x | P x}) (n : ) :
P n
theorem Nat.decreasing_induction_of_infinite {P : Prop} (h : (n : ) → P (n + 1)P n) (hP : Set.Infinite {x | P x}) (n : ) :
P n
theorem Nat.cauchy_induction' {P : Prop} (h : (n : ) → P (n + 1)P n) (seed : ) (hs : P seed) (hi : ∀ (x : ), seed xP xy, x < y P y) (n : ) :
P n
theorem Nat.cauchy_induction {P : Prop} (h : (n : ) → P (n + 1)P n) (seed : ) (hs : P seed) (f : ) (hf : ∀ (x : ), seed xP xx < f x P (f x)) (n : ) :
P n
theorem Nat.cauchy_induction_mul {P : Prop} (h : (n : ) → P (n + 1)P n) (k : ) (seed : ) (hk : 1 < k) (hs : P (Nat.succ seed)) (hm : (x : ) → seed < xP xP (k * x)) (n : ) :
P n
theorem Nat.cauchy_induction_two_mul {P : Prop} (h : (n : ) → P (n + 1)P n) (seed : ) (hs : P (Nat.succ seed)) (hm : (x : ) → seed < xP xP (2 * x)) (n : ) :
P n