/- Copyright (c) 2025 Lean FRO, LLC. or its affiliates. All Rights Reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Kim Morrison -/ module prelude import Init.Data.Int.Order import Init.Grind.Module.Basic import Init.Grind.Ordered.Order namespace Lean.Grind /-- A module over the natural numbers which is also equipped with a preorder is considered an ordered module if addition is compatible with the preorder. -/ class NatModule.IsOrdered (M : Type u) [Preorder M] [NatModule M] where /-- `a + c ≤ b + c` iff `a ≤ b`. -/ add_le_left_iff : ∀ {a b : M} (c : M), a ≤ b ↔ a + c ≤ b + c -- This class is actually redundant; it is available automatically when we have an -- `IntModule` satisfying `NatModule.IsOrdered`. -- Replace with a custom constructor? /-- A module over the integers which is also equipped with a preorder is considered an ordered module if addition and negation are compatible with the preorder. -/ class IntModule.IsOrdered (M : Type u) [Preorder M] [IntModule M] where /-- `-a ≤ b` iff `-b ≤ a`. -/ neg_le_iff : ∀ a b : M, -a ≤ b ↔ -b ≤ a /-- `a + c ≤ b + c` iff `a ≤ b`. -/ add_le_left : ∀ {a b : M}, a ≤ b → (c : M) → a + c ≤ b + c /-- -/ hmul_pos_iff : ∀ (k : Int) {a : M}, 0 < a → (0 < k * a ↔ 0 < k) /-- -/ hmul_nonneg : ∀ {k : Int} {a : M}, 0 ≤ k → 0 ≤ a → 0 ≤ k * a namespace NatModule.IsOrdered section variable {M : Type u} [Preorder M] [NatModule M] [NatModule.IsOrdered M] theorem add_le_right_iff {a b : M} (c : M) : a ≤ b ↔ c + a ≤ c + b := by rw [add_comm c a, add_comm c b, add_le_left_iff] theorem hmul_le_hmul {k : Nat} {a b : M} (h : a ≤ b) : k * a ≤ k * b := by induction k with | zero => simp [zero_hmul, Preorder.le_refl] | succ k ih => rw [add_hmul, one_hmul, add_hmul, one_hmul] exact Preorder.le_trans ((add_le_left_iff a).mp ih) ((add_le_right_iff (k * b)).mp h) theorem add_le_left {a b : M} (h : a ≤ b) (c : M) : a + c ≤ b + c := (add_le_left_iff c).mp h theorem add_le_right {a b : M} (c : M) (h : a ≤ b) : c + a ≤ c + b := (add_le_right_iff c).mp h theorem add_lt_left {a b : M} (h : a < b) (c : M) : a + c < b + c := by simp only [Preorder.lt_iff_le_not_le] at h ⊢ constructor · exact add_le_left h.1 _ · intro w apply h.2 exact (add_le_left_iff c).mpr w theorem add_lt_right {a b : M} (c : M) (h : a < b) : c + a < c + b := by rw [add_comm c a, add_comm c b] exact add_lt_left h c theorem add_lt_left_iff {a b : M} (c : M) : a < b ↔ a + c < b + c := by constructor · exact fun h => add_lt_left h c · intro w simp only [Preorder.lt_iff_le_not_le] at w ⊢ constructor · exact (add_le_left_iff c).mpr w.1 · intro h exact w.2 ((add_le_left_iff c).mp h) theorem add_lt_right_iff {a b : M} (c : M) : a < b ↔ c + a < c + b := by rw [add_comm c a, add_comm c b, add_lt_left_iff] theorem hmul_lt_hmul_iff (k : Nat) {a b : M} (h : a < b) : k * a < k * b ↔ 0 < k := by induction k with | zero => simp [zero_hmul, Preorder.lt_irrefl] | succ k ih => rw [add_hmul, one_hmul, add_hmul, one_hmul] simp only [Nat.zero_lt_succ, iff_true] by_cases hk : 0 < k · simp only [hk, iff_true] at ih exact Preorder.lt_trans ((add_lt_left_iff a).mp ih) ((add_lt_right_iff (k * b)).mp h) · simp [Nat.eq_zero_of_not_pos hk, zero_hmul, zero_add, h] theorem hmul_pos_iff {k : Nat} {a : M} (h : 0 < a) : 0 < k * a ↔ 0 < k:= by rw [← hmul_lt_hmul_iff k h, hmul_zero] theorem hmul_nonneg {k : Nat} {a : M} (h : 0 ≤ a) : 0 ≤ k * a := by have := hmul_le_hmul (k := k) h rwa [hmul_zero] at this theorem hmul_le_hmul_of_le_of_le_of_nonneg {k₁ k₂ : Nat} {x y : M} (hk : k₁ ≤ k₂) (h : x ≤ y) (w : 0 ≤ x) : k₁ * x ≤ k₂ * y := by apply Preorder.le_trans · change k₁ * x ≤ k₂ * x obtain ⟨k', rfl⟩ := Nat.exists_eq_add_of_le hk rw [add_hmul] conv => lhs; rw [← add_zero (k₁ * x)] rw [← add_le_right_iff] exact hmul_nonneg w · exact hmul_le_hmul h theorem add_le_add {a b c d : M} (hab : a ≤ b) (hcd : c ≤ d) : a + c ≤ b + d := Preorder.le_trans (add_le_right a hcd) (add_le_left hab d) end section variable {M : Type u} [Preorder M] [IntModule M] [NatModule.IsOrdered M] theorem neg_le_iff {a b : M} : -a ≤ b ↔ -b ≤ a := by rw [NatModule.IsOrdered.add_le_left_iff a, IntModule.neg_add_cancel] conv => rhs; rw [NatModule.IsOrdered.add_le_left_iff b, IntModule.neg_add_cancel] rw [add_comm] end end NatModule.IsOrdered namespace IntModule.IsOrdered section variable {M : Type u} [Preorder M] [IntModule M] [NatModule.IsOrdered M] open NatModule.IsOrdered in instance : IntModule.IsOrdered M where neg_le_iff a b := NatModule.IsOrdered.neg_le_iff add_le_left := NatModule.IsOrdered.add_le_left hmul_pos_iff k x := match k with | (k + 1 : Nat) => by intro h simpa [hmul_zero, ← hmul_nat] using hmul_lt_hmul_iff (k := k + 1) h | (0 : Nat) => by simp [zero_hmul]; intro h; exact Preorder.lt_irrefl 0 | -(k + 1 : Nat) => by intro h have : ¬ (k : Int) + 1 < 0 := by omega simp [this]; clear this rw [neg_hmul] rw [Preorder.lt_iff_le_not_le] simp intro h' rw [NatModule.IsOrdered.neg_le_iff, neg_zero] simpa [hmul_zero, ← hmul_nat] using hmul_le_hmul (k := k + 1) (Preorder.le_of_lt h) hmul_nonneg {k a} h := match k, h with | (k : Nat), _ => by simpa [hmul_nat] using NatModule.IsOrdered.hmul_nonneg end variable {M : Type u} [Preorder M] [IntModule M] [IntModule.IsOrdered M] theorem le_neg_iff {a b : M} : a ≤ -b ↔ b ≤ -a := by conv => lhs; rw [← neg_neg a] rw [neg_le_iff, neg_neg] theorem neg_lt_iff {a b : M} : -a < b ↔ -b < a := by simp [Preorder.lt_iff_le_not_le] rw [neg_le_iff, le_neg_iff] theorem lt_neg_iff {a b : M} : a < -b ↔ b < -a := by conv => lhs; rw [← neg_neg a] rw [neg_lt_iff, neg_neg] theorem neg_nonneg_iff {a : M} : 0 ≤ -a ↔ a ≤ 0 := by rw [le_neg_iff, neg_zero] theorem neg_pos_iff {a : M} : 0 < -a ↔ a < 0 := by rw [lt_neg_iff, neg_zero] theorem add_lt_left {a b : M} (h : a < b) (c : M) : a + c < b + c := by simp only [Preorder.lt_iff_le_not_le] at h ⊢ constructor · exact add_le_left h.1 _ · intro w apply h.2 replace w := add_le_left w (-c) rw [add_assoc, add_assoc, add_neg_cancel, add_zero, add_zero] at w exact w theorem add_le_right (a : M) {b c : M} (h : b ≤ c) : a + b ≤ a + c := by rw [add_comm a b, add_comm a c] exact add_le_left h a theorem add_lt_right (a : M) {b c : M} (h : b < c) : a + b < a + c := by rw [add_comm a b, add_comm a c] exact add_lt_left h a theorem add_le_left_iff {a b : M} (c : M) : a ≤ b ↔ a + c ≤ b + c := by constructor · intro w exact add_le_left w c · intro w have := add_le_left w (-c) rwa [add_assoc, add_neg_cancel, add_zero, add_assoc, add_neg_cancel, add_zero] at this theorem add_le_right_iff {a b : M} (c : M) : a ≤ b ↔ c + a ≤ c + b := by constructor · intro w exact add_le_right c w · intro w have := add_le_right (-c) w rwa [← add_assoc, neg_add_cancel, zero_add, ← add_assoc, neg_add_cancel, zero_add] at this theorem add_lt_left_iff {a b : M} (c : M) : a < b ↔ a + c < b + c := by constructor · intro w exact add_lt_left w c · intro w have := add_lt_left w (-c) rwa [add_assoc, add_neg_cancel, add_zero, add_assoc, add_neg_cancel, add_zero] at this theorem add_lt_right_iff {a b : M} (c : M) : a < b ↔ c + a < c + b := by constructor · intro w exact add_lt_right c w · intro w have := add_lt_right (-c) w rwa [← add_assoc, neg_add_cancel, zero_add, ← add_assoc, neg_add_cancel, zero_add] at this theorem sub_nonneg_iff {a b : M} : 0 ≤ a - b ↔ b ≤ a := by rw [add_le_left_iff b, zero_add, sub_add_cancel] theorem sub_pos_iff {a b : M} : 0 < a - b ↔ b < a := by rw [add_lt_left_iff b, zero_add, sub_add_cancel] theorem hmul_neg_iff (k : Int) {a : M} (h : a < 0) : k * a < 0 ↔ 0 < k := by simpa [IntModule.hmul_neg, neg_pos_iff] using hmul_pos_iff k (neg_pos_iff.mpr h) theorem hmul_nonpos {k : Int} {a : M} (hk : 0 ≤ k) (ha : a ≤ 0) : k * a ≤ 0 := by simpa [IntModule.hmul_neg, neg_nonneg_iff] using hmul_nonneg hk (neg_nonneg_iff.mpr ha) theorem hmul_le_hmul {a b : M} {k : Int} (hk : 0 ≤ k) (h : a ≤ b) : k * a ≤ k * b := by simpa [hmul_sub, sub_nonneg_iff] using hmul_nonneg hk (sub_nonneg_iff.mpr h) theorem hmul_lt_hmul_iff (k : Int) {a b : M} (h : a < b) : k * a < k * b ↔ 0 < k := by simpa [hmul_sub, sub_pos_iff] using hmul_pos_iff k (sub_pos_iff.mpr h) theorem hmul_le_hmul_of_le_of_le_of_nonneg_of_nonneg {k₁ k₂ : Int} {x y : M} (hk : k₁ ≤ k₂) (h : x ≤ y) (w : 0 ≤ k₁) (w' : 0 ≤ x) : k₁ * x ≤ k₂ * y := by apply Preorder.le_trans · have : 0 ≤ k₁ * (y - x) := hmul_nonneg w (sub_nonneg_iff.mpr h) rwa [IntModule.hmul_sub, sub_nonneg_iff] at this · have : 0 ≤ (k₂ - k₁) * y := hmul_nonneg (Int.sub_nonneg.mpr hk) (Preorder.le_trans w' h) rwa [IntModule.sub_hmul, sub_nonneg_iff] at this theorem add_le_add {a b c d : M} (hab : a ≤ b) (hcd : c ≤ d) : a + c ≤ b + d := Preorder.le_trans (add_le_right a hcd) (add_le_left hab d) instance : NatModule.IsOrdered M where add_le_left_iff := add_le_left_iff end IntModule.IsOrdered end Lean.Grind