We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9529c50 commit 527babaCopy full SHA for 527baba
1 file changed
Mathlib/Data/Finset/Range.lean
@@ -92,6 +92,9 @@ theorem range_subset_range {n m} : range n ⊆ range m ↔ n ≤ m := by grind
92
93
theorem range_mono : Monotone range := fun _ _ => range_subset_range.2
94
95
+theorem strictMono_range : StrictMono range :=
96
+ strictMono_nat_of_lt_succ fun _ ↦ by simp [ssubset_def]
97
+
98
theorem mem_range_succ_iff {a b : ℕ} : a ∈ range b.succ ↔ a ≤ b := by grind
99
100
theorem mem_range_le {n x : ℕ} (hx : x ∈ range n) : x ≤ n := by grind
0 commit comments