Documentation

Mathlib.Algebra.Order.Interval.Set.Monoid

Images of intervals under (+ d) #

The lemmas in this file state that addition maps intervals bijectively. The typeclass ExistsAddOfLE is defined specifically to make them work when combined with OrderedCancelAddCommMonoid; the lemmas below therefore apply to all OrderedAddCommGroup, but also to and ℝ≥0, which are not groups.

theorem Set.Ici_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a d : M) :
BijOn (fun (x : M) => x + d) (Ici a) (Ici (a + d))
theorem Set.Ioi_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a d : M) :
BijOn (fun (x : M) => x + d) (Ioi a) (Ioi (a + d))
theorem Set.Icc_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a b d : M) :
BijOn (fun (x : M) => x + d) (Icc a b) (Icc (a + d) (b + d))
theorem Set.Ioo_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a b d : M) :
BijOn (fun (x : M) => x + d) (Ioo a b) (Ioo (a + d) (b + d))
theorem Set.Ioc_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a b d : M) :
BijOn (fun (x : M) => x + d) (Ioc a b) (Ioc (a + d) (b + d))
theorem Set.Ico_add_bij {M : Type u_1} [OrderedCancelAddCommMonoid M] [ExistsAddOfLE M] (a b d : M) :
BijOn (fun (x : M) => x + d) (Ico a b) (Ico (a + d) (b + d))

Images under x ↦ x + a #

Images under x ↦ a + x #