state
stringlengths
0
159k
srcUpToTactic
stringlengths
387
167k
nextTactic
stringlengths
3
9k
declUpToTactic
stringlengths
22
11.5k
declId
stringlengths
38
95
decl
stringlengths
16
1.89k
file_tag
stringlengths
17
73
α✝ : Type u β : Type v α : Type u_1 inst✝ : Sup α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) sup_idem : ∀ (a : α), a ⊔ a = a a b c : α hac : a ≤ c hbc : b ≤ c ⊢ a ⊔ b ≤ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
show (a ⊔ b) ⊔ c = c
/-- A type with a commutative, associative and idempotent binary `sup` operation has the structure of a join-semilattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def SemilatticeSup.mk' {α : Type*} [Sup α] (sup_comm : ∀ a b : α, a ⊔ b = b ⊔ a) (sup_assoc : ∀ a b c...
Mathlib.Order.Lattice.80_0.wE3igZl9MFbJBfv
/-- A type with a commutative, associative and idempotent binary `sup` operation has the structure of a join-semilattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def SemilatticeSup.mk' {α : Type*} [Sup α] (sup_comm : ∀ a b : α, a ⊔ b = b ⊔ a) (sup_assoc : ∀ a b c...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝ : Sup α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) sup_idem : ∀ (a : α), a ⊔ a = a a b c : α hac : a ≤ c hbc : b ≤ c ⊢ a ⊔ b ⊔ c = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_assoc, hbc]
/-- A type with a commutative, associative and idempotent binary `sup` operation has the structure of a join-semilattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def SemilatticeSup.mk' {α : Type*} [Sup α] (sup_comm : ∀ a b : α, a ⊔ b = b ⊔ a) (sup_assoc : ∀ a b c...
Mathlib.Order.Lattice.80_0.wE3igZl9MFbJBfv
/-- A type with a commutative, associative and idempotent binary `sup` operation has the structure of a join-semilattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def SemilatticeSup.mk' {α : Type*} [Sup α] (sup_comm : ∀ a b : α, a ⊔ b = b ⊔ a) (sup_assoc : ∀ a b c...
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ b ≤ a ∧ a ≤ a ⊔ b ↔ b ≤ a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp [le_rfl]
@[simp] theorem sup_eq_left : a ⊔ b = a ↔ b ≤ a := le_antisymm_iff.trans $ by
Mathlib.Order.Lattice.164_0.wE3igZl9MFbJBfv
@[simp] theorem sup_eq_left : a ⊔ b = a ↔ b ≤ a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ b ≤ b ∧ b ≤ a ⊔ b ↔ a ≤ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp [le_rfl]
@[simp] theorem sup_eq_right : a ⊔ b = b ↔ a ≤ b := le_antisymm_iff.trans $ by
Mathlib.Order.Lattice.169_0.wE3igZl9MFbJBfv
@[simp] theorem sup_eq_right : a ⊔ b = b ↔ a ≤ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ≤ b ↔ ∃ c, b = a ⊔ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
constructor
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c := by
Mathlib.Order.Lattice.207_0.wE3igZl9MFbJBfv
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c
Mathlib_Order_Lattice
case mp α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ≤ b → ∃ c, b = a ⊔ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
intro h
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c := by constructor ·
Mathlib.Order.Lattice.207_0.wE3igZl9MFbJBfv
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c
Mathlib_Order_Lattice
case mp α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α h : a ≤ b ⊢ ∃ c, b = a ⊔ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact ⟨b, (sup_eq_right.mpr h).symm⟩
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c := by constructor · intro h
Mathlib.Order.Lattice.207_0.wE3igZl9MFbJBfv
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c
Mathlib_Order_Lattice
case mpr α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ (∃ c, b = a ⊔ c) → a ≤ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rintro ⟨c, rfl : _ = _ ⊔ _⟩
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c := by constructor · intro h exact ⟨b, (sup_eq_right.mpr h).symm⟩ ·
Mathlib.Order.Lattice.207_0.wE3igZl9MFbJBfv
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c
Mathlib_Order_Lattice
case mpr.intro α : Type u β : Type v inst✝ : SemilatticeSup α a c✝ d c : α ⊢ a ≤ a ⊔ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact le_sup_left
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c := by constructor · intro h exact ⟨b, (sup_eq_right.mpr h).symm⟩ · rintro ⟨c, rfl : _ = _ ⊔ _⟩
Mathlib.Order.Lattice.207_0.wE3igZl9MFbJBfv
theorem le_iff_exists_sup : a ≤ b ↔ ∃ c, b = a ⊔ c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ a = a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_idem : a ⊔ a = a := by
Mathlib.Order.Lattice.231_0.wE3igZl9MFbJBfv
theorem sup_idem : a ⊔ a = a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ b = b ⊔ a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply le_antisymm
theorem sup_comm : a ⊔ b = b ⊔ a := by
Mathlib.Order.Lattice.237_0.wE3igZl9MFbJBfv
theorem sup_comm : a ⊔ b = b ⊔ a
Mathlib_Order_Lattice
case a α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ b ≤ b ⊔ a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_comm : a ⊔ b = b ⊔ a := by apply le_antisymm <;>
Mathlib.Order.Lattice.237_0.wE3igZl9MFbJBfv
theorem sup_comm : a ⊔ b = b ⊔ a
Mathlib_Order_Lattice
case a α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ b ⊔ a ≤ a ⊔ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_comm : a ⊔ b = b ⊔ a := by apply le_antisymm <;>
Mathlib.Order.Lattice.237_0.wE3igZl9MFbJBfv
theorem sup_comm : a ⊔ b = b ⊔ a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d x : α ⊢ a ⊔ b ⊔ c ≤ x ↔ a ⊔ (b ⊔ c) ≤ x
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [sup_le_iff]
theorem sup_assoc : a ⊔ b ⊔ c = a ⊔ (b ⊔ c) := eq_of_forall_ge_iff $ fun x => by
Mathlib.Order.Lattice.243_0.wE3igZl9MFbJBfv
theorem sup_assoc : a ⊔ b ⊔ c = a ⊔ (b ⊔ c)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d x : α ⊢ (a ≤ x ∧ b ≤ x) ∧ c ≤ x ↔ a ≤ x ∧ b ≤ x ∧ c ≤ x
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [and_assoc]
theorem sup_assoc : a ⊔ b ⊔ c = a ⊔ (b ⊔ c) := eq_of_forall_ge_iff $ fun x => by simp only [sup_le_iff];
Mathlib.Order.Lattice.243_0.wE3igZl9MFbJBfv
theorem sup_assoc : a ⊔ b ⊔ c = a ⊔ (b ⊔ c)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d a b c : α ⊢ a ⊔ b ⊔ c = c ⊔ b ⊔ a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_comm, @sup_comm _ _ a, sup_assoc]
theorem sup_left_right_swap (a b c : α) : a ⊔ b ⊔ c = c ⊔ b ⊔ a := by
Mathlib.Order.Lattice.250_0.wE3igZl9MFbJBfv
theorem sup_left_right_swap (a b c : α) : a ⊔ b ⊔ c = c ⊔ b ⊔ a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ (a ⊔ b) = a ⊔ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_left_idem : a ⊔ (a ⊔ b) = a ⊔ b := by
Mathlib.Order.Lattice.255_0.wE3igZl9MFbJBfv
theorem sup_left_idem : a ⊔ (a ⊔ b) = a ⊔ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a b c d : α ⊢ a ⊔ b ⊔ b = a ⊔ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_right_idem : a ⊔ b ⊔ b = a ⊔ b := by
Mathlib.Order.Lattice.259_0.wE3igZl9MFbJBfv
theorem sup_right_idem : a ⊔ b ⊔ b = a ⊔ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d a b c : α ⊢ a ⊔ (b ⊔ c) = b ⊔ (a ⊔ c)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← sup_assoc, ← sup_assoc, @sup_comm α _ a]
theorem sup_left_comm (a b c : α) : a ⊔ (b ⊔ c) = b ⊔ (a ⊔ c) := by
Mathlib.Order.Lattice.262_0.wE3igZl9MFbJBfv
theorem sup_left_comm (a b c : α) : a ⊔ (b ⊔ c) = b ⊔ (a ⊔ c)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d a b c : α ⊢ a ⊔ b ⊔ c = a ⊔ c ⊔ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_assoc, sup_assoc, @sup_comm _ _ b]
theorem sup_right_comm (a b c : α) : a ⊔ b ⊔ c = a ⊔ c ⊔ b := by
Mathlib.Order.Lattice.266_0.wE3igZl9MFbJBfv
theorem sup_right_comm (a b c : α) : a ⊔ b ⊔ c = a ⊔ c ⊔ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d✝ a b c d : α ⊢ a ⊔ b ⊔ (c ⊔ d) = a ⊔ c ⊔ (b ⊔ d)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_assoc, sup_left_comm b, ← sup_assoc]
theorem sup_sup_sup_comm (a b c d : α) : a ⊔ b ⊔ (c ⊔ d) = a ⊔ c ⊔ (b ⊔ d) := by
Mathlib.Order.Lattice.270_0.wE3igZl9MFbJBfv
theorem sup_sup_sup_comm (a b c d : α) : a ⊔ b ⊔ (c ⊔ d) = a ⊔ c ⊔ (b ⊔ d)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d a b c : α ⊢ a ⊔ (b ⊔ c) = a ⊔ b ⊔ (a ⊔ c)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_sup_sup_comm, sup_idem]
theorem sup_sup_distrib_left (a b c : α) : a ⊔ (b ⊔ c) = a ⊔ b ⊔ (a ⊔ c) := by
Mathlib.Order.Lattice.274_0.wE3igZl9MFbJBfv
theorem sup_sup_distrib_left (a b c : α) : a ⊔ (b ⊔ c) = a ⊔ b ⊔ (a ⊔ c)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeSup α a✝ b✝ c✝ d a b c : α ⊢ a ⊔ b ⊔ c = a ⊔ c ⊔ (b ⊔ c)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_sup_sup_comm, sup_idem]
theorem sup_sup_distrib_right (a b c : α) : a ⊔ b ⊔ c = a ⊔ c ⊔ (b ⊔ c) := by
Mathlib.Order.Lattice.278_0.wE3igZl9MFbJBfv
theorem sup_sup_distrib_right (a b c : α) : a ⊔ b ⊔ c = a ⊔ c ⊔ (b ⊔ c)
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c✝ d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x y c : α ⊢ x ⊔ y ≤ c ↔ x ⊔ y ≤ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [sup_le_iff]
theorem SemilatticeSup.ext_sup {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) (x y : α) : (haveI := A; x ⊔ y) = x ⊔ y := eq_of_forall_ge_iff $ fun c => by
Mathlib.Order.Lattice.311_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext_sup {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c✝ d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x y c : α ⊢ x ⊔ y ≤ c ↔ x ≤ c ∧ y ≤ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← H, @sup_le_iff α A, H, H]
theorem SemilatticeSup.ext_sup {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) (x y : α) : (haveI := A; x ⊔ y) = x ⊔ y := eq_of_forall_ge_iff $ fun c => by simp only [sup_le_iff];
Mathlib.Order.Lattice.311_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext_sup {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ A = B
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
have ss : A.toSup = B.toSup := by ext; apply SemilatticeSup.ext_sup H
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ toSup = toSup
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
ext
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case sup.h.h α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x✝¹ x✝ : α ⊢ x✝¹ ⊔ x✝ = x✝¹ ⊔ x✝
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply SemilatticeSup.ext_sup H
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by ext;
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeSup α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ss : toSup = toSup ⊢ A = B
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases A
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by ext; apply SemilatticeSup.ext_sup H
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 B : SemilatticeSup α toSup✝ : Sup α toPartialOrder✝ : PartialOrder α le_sup_left✝ : ∀ (a b : α), a ≤ a ⊔ b le_sup_right✝ : ∀ (a b : α), b ≤ a ⊔ b sup_le✝ : ∀ (a b c : α), a ≤ c → b ≤ c → a ⊔ b ≤ c H : ∀ (x y : α), x ≤ y ↔ x ≤ y ss : toSu...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases B
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by ext; apply SemilatticeSup.ext_sup H cases A
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 toSup✝¹ : Sup α toPartialOrder✝¹ : PartialOrder α le_sup_left✝¹ : ∀ (a b : α), a ≤ a ⊔ b le_sup_right✝¹ : ∀ (a b : α), b ≤ a ⊔ b sup_le✝¹ : ∀ (a b c : α), a ≤ c → b ≤ c → a ⊔ b ≤ c toSup✝ : Sup α toPartialOrder✝ : PartialOrder α le_su...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases PartialOrder.ext H
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by ext; apply SemilatticeSup.ext_sup H cases A cases B
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk.refl α✝ : Type u β : Type v inst✝ : SemilatticeSup α✝ a b c d : α✝ α : Type u_1 toSup✝¹ : Sup α toPartialOrder✝ : PartialOrder α le_sup_left✝¹ : ∀ (a b : α), a ≤ a ⊔ b le_sup_right✝¹ : ∀ (a b : α), b ≤ a ⊔ b sup_le✝¹ : ∀ (a b c : α), a ≤ c → b ≤ c → a ⊔ b ≤ c toSup✝ : Sup α le_sup_left✝ : ∀ (a b : α), a ≤ a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
congr
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toSup = B.toSup := by ext; apply SemilatticeSup.ext_sup H cases A cases B cases PartialOrder.ext H
Mathlib.Order.Lattice.318_0.wE3igZl9MFbJBfv
theorem SemilatticeSup.ext {α} {A B : SemilatticeSup α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeInf α a b c d : α ⊢ a ⊓ b ≤ a ∧ a ≤ a ⊓ b ↔ a ≤ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp [le_rfl]
@[simp] theorem inf_eq_left : a ⊓ b = a ↔ a ≤ b := le_antisymm_iff.trans $ by
Mathlib.Order.Lattice.421_0.wE3igZl9MFbJBfv
@[simp] theorem inf_eq_left : a ⊓ b = a ↔ a ≤ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : SemilatticeInf α a b c d : α ⊢ a ⊓ b ≤ b ∧ b ≤ a ⊓ b ↔ b ≤ a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp [le_rfl]
@[simp] theorem inf_eq_right : a ⊓ b = b ↔ b ≤ a := le_antisymm_iff.trans $ by
Mathlib.Order.Lattice.426_0.wE3igZl9MFbJBfv
@[simp] theorem inf_eq_right : a ⊓ b = b ↔ b ≤ a
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c✝ d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x y c : α ⊢ c ≤ x ⊓ y ↔ c ≤ x ⊓ y
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [le_inf_iff]
theorem SemilatticeInf.ext_inf {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) (x y : α) : (haveI := A; x ⊓ y) = x ⊓ y := eq_of_forall_le_iff $ fun c => by
Mathlib.Order.Lattice.555_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext_inf {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c✝ d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x y c : α ⊢ c ≤ x ⊓ y ↔ c ≤ x ∧ c ≤ y
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← H, @le_inf_iff α A, H, H]
theorem SemilatticeInf.ext_inf {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) (x y : α) : (haveI := A; x ⊓ y) = x ⊓ y := eq_of_forall_le_iff $ fun c => by simp only [le_inf_iff];
Mathlib.Order.Lattice.555_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext_inf {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ A = B
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
have ss : A.toInf = B.toInf := by ext; apply SemilatticeInf.ext_inf H
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ toInf = toInf
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
ext
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case inf.h.h α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y x✝¹ x✝ : α ⊢ x✝¹ ⊓ x✝ = x✝¹ ⊓ x✝
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply SemilatticeInf.ext_inf H
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by ext;
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 A B : SemilatticeInf α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ss : toInf = toInf ⊢ A = B
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases A
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by ext; apply SemilatticeInf.ext_inf H
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 B : SemilatticeInf α toInf✝ : Inf α toPartialOrder✝ : PartialOrder α inf_le_left✝ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c H : ∀ (x y : α), x ≤ y ↔ x ≤ y ss : toIn...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases B
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by ext; apply SemilatticeInf.ext_inf H cases A
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 toInf✝¹ : Inf α toPartialOrder✝¹ : PartialOrder α inf_le_left✝¹ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝¹ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝¹ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c toInf✝ : Inf α toPartialOrder✝ : PartialOrder α inf_l...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases PartialOrder.ext H
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by ext; apply SemilatticeInf.ext_inf H cases A cases B
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk.refl α✝ : Type u β : Type v inst✝ : SemilatticeInf α✝ a b c d : α✝ α : Type u_1 toInf✝¹ : Inf α toPartialOrder✝ : PartialOrder α inf_le_left✝¹ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝¹ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝¹ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c toInf✝ : Inf α inf_le_left✝ : ∀ (a b : α), a ⊓ b ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
congr
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by have ss : A.toInf = B.toInf := by ext; apply SemilatticeInf.ext_inf H cases A cases B cases PartialOrder.ext H
Mathlib.Order.Lattice.562_0.wE3igZl9MFbJBfv
theorem SemilatticeInf.ext {α} {A B : SemilatticeInf α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝ : Inf α inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) inf_idem : ∀ (a : α), a ⊓ a = a ⊢ SemilatticeInf α
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
haveI : SemilatticeSup αᵒᵈ := SemilatticeSup.mk' inf_comm inf_assoc inf_idem
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib.Order.Lattice.583_0.wE3igZl9MFbJBfv
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝ : Inf α inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) inf_idem : ∀ (a : α), a ⊓ a = a this : SemilatticeSup αᵒᵈ ⊢ SemilatticeInf α
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
haveI i := OrderDual.semilatticeInf αᵒᵈ
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib.Order.Lattice.583_0.wE3igZl9MFbJBfv
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝ : Inf α inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) inf_idem : ∀ (a : α), a ⊓ a = a this : SemilatticeSup αᵒᵈ i : SemilatticeInf αᵒᵈᵒᵈ ⊢ SemilatticeInf α
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact i
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib.Order.Lattice.583_0.wE3igZl9MFbJBfv
/-- A type with a commutative, associative and idempotent binary `inf` operation has the structure of a meet-semilattice. The partial order is defined so that `a ≤ b` unfolds to `b ⊓ a = a`; cf. `inf_eq_right`. -/ def SemilatticeInf.mk' {α : Type*} [Inf α] (inf_comm : ∀ a b : α, a ⊓ b = b ⊓ a) (inf_assoc : ∀ a b c...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) sup_idem : ∀ (a : α), a ⊔ a = a inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) inf_idem : ∀ (a : α), a ⊓ a = a sup_inf_self ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← h, inf_comm, inf_sup_self]
/-- The partial orders from `SemilatticeSup_mk'` and `SemilatticeInf_mk'` agree if `sup` and `inf` satisfy the lattice absorption laws `sup_inf_self` (`a ⊔ a ⊓ b = a`) and `inf_sup_self` (`a ⊓ (a ⊔ b) = a`). -/ theorem semilatticeSup_mk'_partialOrder_eq_semilatticeInf_mk'_partialOrder {α : Type*} [Sup α] [Inf α] ...
Mathlib.Order.Lattice.609_0.wE3igZl9MFbJBfv
/-- The partial orders from `SemilatticeSup_mk'` and `SemilatticeInf_mk'` agree if `sup` and `inf` satisfy the lattice absorption laws `sup_inf_self` (`a ⊔ a ⊓ b = a`) and `inf_sup_self` (`a ⊓ (a ⊔ b) = a`). -/ theorem semilatticeSup_mk'_partialOrder_eq_semilatticeInf_mk'_partialOrder {α : Type*} [Sup α] [Inf α] ...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) sup_idem : ∀ (a : α), a ⊔ a = a inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) inf_idem : ∀ (a : α), a ⊓ a = a sup_inf_self ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← h, sup_comm, sup_inf_self]
/-- The partial orders from `SemilatticeSup_mk'` and `SemilatticeInf_mk'` agree if `sup` and `inf` satisfy the lattice absorption laws `sup_inf_self` (`a ⊔ a ⊓ b = a`) and `inf_sup_self` (`a ⊓ (a ⊔ b) = a`). -/ theorem semilatticeSup_mk'_partialOrder_eq_semilatticeInf_mk'_partialOrder {α : Type*} [Sup α] [Inf α] ...
Mathlib.Order.Lattice.609_0.wE3igZl9MFbJBfv
/-- The partial orders from `SemilatticeSup_mk'` and `SemilatticeInf_mk'` agree if `sup` and `inf` satisfy the lattice absorption laws `sup_inf_self` (`a ⊔ a ⊓ b = a`) and `inf_sup_self` (`a ⊓ (a ⊔ b) = a`). -/ theorem semilatticeSup_mk'_partialOrder_eq_semilatticeInf_mk'_partialOrder {α : Type*} [Sup α] [Inf α] ...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [inf_sup_self]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_inf_self]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_inf_self]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [inf_sup_self]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [partial_order_eq]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply inf_le_left
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [partial_order_eq]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply inf_le_right
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [partial_order_eq]
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α✝ : Type u β : Type v α : Type u_1 inst✝¹ : Sup α inst✝ : Inf α sup_comm : ∀ (a b : α), a ⊔ b = b ⊔ a sup_assoc : ∀ (a b c : α), a ⊔ b ⊔ c = a ⊔ (b ⊔ c) inf_comm : ∀ (a b : α), a ⊓ b = b ⊓ a inf_assoc : ∀ (a b c : α), a ⊓ b ⊓ c = a ⊓ (b ⊓ c) sup_inf_self : ∀ (a b : α), a ⊔ a ⊓ b = a inf_sup_self : ∀ (a b : α), a ⊓ (a ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
apply le_inf
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib.Order.Lattice.625_0.wE3igZl9MFbJBfv
/-- A type with a pair of commutative and associative binary operations which satisfy two absorption laws relating the two operations has the structure of a lattice. The partial order is defined so that `a ≤ b` unfolds to `a ⊔ b = b`; cf. `sup_eq_right`. -/ def Lattice.mk' {α : Type*} [Sup α] [Inf α] (sup_comm : ∀ a b...
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊔ b ≤ a ⊓ b ↔ a = b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp [le_antisymm_iff, and_comm]
theorem sup_le_inf : a ⊔ b ≤ a ⊓ b ↔ a = b := by
Mathlib.Order.Lattice.671_0.wE3igZl9MFbJBfv
theorem sup_le_inf : a ⊔ b ≤ a ⊓ b ↔ a = b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊓ b = a ⊔ b ↔ a = b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [← inf_le_sup.ge_iff_eq, sup_le_inf]
@[simp] lemma inf_eq_sup : a ⊓ b = a ⊔ b ↔ a = b := by
Mathlib.Order.Lattice.674_0.wE3igZl9MFbJBfv
@[simp] lemma inf_eq_sup : a ⊓ b = a ⊔ b ↔ a = b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊓ b < a ⊔ b ↔ a ≠ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [inf_le_sup.lt_iff_ne, Ne.def, inf_eq_sup]
@[simp] lemma inf_lt_sup : a ⊓ b < a ⊔ b ↔ a ≠ b := by
Mathlib.Order.Lattice.678_0.wE3igZl9MFbJBfv
@[simp] lemma inf_lt_sup : a ⊓ b < a ⊔ b ↔ a ≠ b
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
refine' ⟨fun h ↦ _, _⟩
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_1 α : Type u β : Type v inst✝ : Lattice α a b c d : α h : a ⊓ b = c ∧ a ⊔ b = c ⊢ a = c ∧ b = c case refine'_2 α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a = c ∧ b = c → a ⊓ b = c ∧ a ⊔ b = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
{ obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm) simpa using h }
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_1 α : Type u β : Type v inst✝ : Lattice α a b c d : α h : a ⊓ b = c ∧ a ⊔ b = c ⊢ a = c ∧ b = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm)
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩ {
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_1 α : Type u β : Type v inst✝ : Lattice α a c d : α h : a ⊓ a = c ∧ a ⊔ a = c ⊢ a = c ∧ a = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simpa using h
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩ { obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm)
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_2 α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a = c ∧ b = c → a ⊓ b = c ∧ a ⊔ b = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
{ rintro ⟨rfl, rfl⟩ exact ⟨inf_idem, sup_idem⟩ }
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩ { obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm) simpa using h }
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_2 α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a = c ∧ b = c → a ⊓ b = c ∧ a ⊔ b = c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rintro ⟨rfl, rfl⟩
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩ { obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm) simpa using h } {
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
case refine'_2.intro α : Type u β : Type v inst✝ : Lattice α b d : α ⊢ b ⊓ b = b ∧ b ⊔ b = b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact ⟨inf_idem, sup_idem⟩
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c := by refine' ⟨fun h ↦ _, _⟩ { obtain rfl := sup_eq_inf.1 (h.2.trans h.1.symm) simpa using h } { rintro ⟨rfl, rfl⟩
Mathlib.Order.Lattice.681_0.wE3igZl9MFbJBfv
lemma inf_eq_and_sup_eq_iff : a ⊓ b = c ∧ a ⊔ b = c ↔ a = c ∧ b = c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊓ (a ⊔ b) = a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem inf_sup_self : a ⊓ (a ⊔ b) = a := by
Mathlib.Order.Lattice.703_0.wE3igZl9MFbJBfv
theorem inf_sup_self : a ⊓ (a ⊔ b) = a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊔ a ⊓ b = a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp
theorem sup_inf_self : a ⊔ a ⊓ b = a := by
Mathlib.Order.Lattice.706_0.wE3igZl9MFbJBfv
theorem sup_inf_self : a ⊔ a ⊓ b = a
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : Lattice α a b c d : α ⊢ a ⊔ b = b ↔ a ⊓ b = a
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_eq_right, ← inf_eq_left]
theorem sup_eq_iff_inf_eq : a ⊔ b = b ↔ a ⊓ b = a := by
Mathlib.Order.Lattice.709_0.wE3igZl9MFbJBfv
theorem sup_eq_iff_inf_eq : a ⊔ b = b ↔ a ⊓ b = a
Mathlib_Order_Lattice
α✝ : Type u β : Type v inst✝ : Lattice α✝ a b c d : α✝ α : Type u_1 A B : Lattice α H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ A = B
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases A
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by
Mathlib.Order.Lattice.712_0.wE3igZl9MFbJBfv
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk α✝ : Type u β : Type v inst✝ : Lattice α✝ a b c d : α✝ α : Type u_1 B : Lattice α toSemilatticeSup✝ : SemilatticeSup α toInf✝ : Inf α inf_le_left✝ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c H : ∀ (x y : α), x ≤ y ↔ x ≤ y ⊢ mk inf_le_left✝ i...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases B
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by cases A
Mathlib.Order.Lattice.712_0.wE3igZl9MFbJBfv
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk α✝ : Type u β : Type v inst✝ : Lattice α✝ a b c d : α✝ α : Type u_1 toSemilatticeSup✝¹ : SemilatticeSup α toInf✝¹ : Inf α inf_le_left✝¹ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝¹ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝¹ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c toSemilatticeSup✝ : SemilatticeSup α toInf✝ : Inf α inf_...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases SemilatticeSup.ext H
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by cases A cases B
Mathlib.Order.Lattice.712_0.wE3igZl9MFbJBfv
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk.refl α✝ : Type u β : Type v inst✝ : Lattice α✝ a b c d : α✝ α : Type u_1 toSemilatticeSup✝ : SemilatticeSup α toInf✝¹ : Inf α inf_le_left✝¹ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝¹ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝¹ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c toInf✝ : Inf α inf_le_left✝ : ∀ (a b : α), a ⊓ b ≤ a...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
cases SemilatticeInf.ext H
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by cases A cases B cases SemilatticeSup.ext H
Mathlib.Order.Lattice.712_0.wE3igZl9MFbJBfv
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
case mk.mk.refl.refl α✝ : Type u β : Type v inst✝ : Lattice α✝ a b c d : α✝ α : Type u_1 toSemilatticeSup✝ : SemilatticeSup α toInf✝ : Inf α inf_le_left✝¹ : ∀ (a b : α), a ⊓ b ≤ a inf_le_right✝¹ : ∀ (a b : α), a ⊓ b ≤ b le_inf✝¹ : ∀ (a b c : α), a ≤ b → a ≤ c → a ≤ b ⊓ c inf_le_left✝ : ∀ (a b : α), a ⊓ b ≤ a inf_le_rig...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
congr
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI := A; x ≤ y) ↔ x ≤ y) : A = B := by cases A cases B cases SemilatticeSup.ext H cases SemilatticeInf.ext H
Mathlib.Order.Lattice.712_0.wE3igZl9MFbJBfv
theorem Lattice.ext {α} {A B : Lattice α} (H : ∀ x y : α, (haveI
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ y ⊓ z ⊔ x = (y ⊔ x) ⊓ (z ⊔ x)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [sup_inf_left, fun y : α => @sup_comm α _ y x, eq_self_iff_true]
theorem sup_inf_right : y ⊓ z ⊔ x = (y ⊔ x) ⊓ (z ⊔ x) := by
Mathlib.Order.Lattice.756_0.wE3igZl9MFbJBfv
theorem sup_inf_right : y ⊓ z ⊔ x = (y ⊔ x) ⊓ (z ⊔ x)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [inf_sup_self]
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z := calc x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z) := by
Mathlib.Order.Lattice.760_0.wE3igZl9MFbJBfv
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ x ⊓ (x ⊔ z) ⊓ (y ⊔ z) = x ⊓ (x ⊓ y ⊔ z)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [inf_assoc, sup_inf_right, eq_self_iff_true]
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z := calc x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z) := by rw [inf_sup_self] _ = x ⊓ (x ⊓ y ⊔ z) := by
Mathlib.Order.Lattice.760_0.wE3igZl9MFbJBfv
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ x ⊓ (x ⊓ y ⊔ z) = (x ⊔ x ⊓ y) ⊓ (x ⊓ y ⊔ z)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_inf_self]
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z := calc x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z) := by rw [inf_sup_self] _ = x ⊓ (x ⊓ y ⊔ z) := by simp only [inf_assoc, sup_inf_right, eq_self_iff_true] _ = (x ⊔ x ⊓ y) ⊓ (x ⊓ y ⊔ z) := by
Mathlib.Order.Lattice.760_0.wE3igZl9MFbJBfv
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ (x ⊔ x ⊓ y) ⊓ (x ⊓ y ⊔ z) = (x ⊓ y ⊔ x) ⊓ (x ⊓ y ⊔ z)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_comm]
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z := calc x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z) := by rw [inf_sup_self] _ = x ⊓ (x ⊓ y ⊔ z) := by simp only [inf_assoc, sup_inf_right, eq_self_iff_true] _ = (x ⊔ x ⊓ y) ⊓ (x ⊓ y ⊔ z) := by rw [sup_inf_self] _ = (x ⊓ y ⊔ x) ⊓ (x ⊓ y ⊔ z) := by
Mathlib.Order.Lattice.760_0.wE3igZl9MFbJBfv
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ (x ⊓ y ⊔ x) ⊓ (x ⊓ y ⊔ z) = x ⊓ y ⊔ x ⊓ z
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_inf_left]
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z := calc x ⊓ (y ⊔ z) = x ⊓ (x ⊔ z) ⊓ (y ⊔ z) := by rw [inf_sup_self] _ = x ⊓ (x ⊓ y ⊔ z) := by simp only [inf_assoc, sup_inf_right, eq_self_iff_true] _ = (x ⊔ x ⊓ y) ⊓ (x ⊓ y ⊔ z) := by rw [sup_inf_self] _ = (x ⊓ y ⊔ x) ⊓ (x ⊓ y ⊔ z) := by rw [sup_comm...
Mathlib.Order.Lattice.760_0.wE3igZl9MFbJBfv
theorem inf_sup_left : x ⊓ (y ⊔ z) = x ⊓ y ⊔ x ⊓ z
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α ⊢ (y ⊔ z) ⊓ x = y ⊓ x ⊔ z ⊓ x
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
simp only [inf_sup_left, fun y : α => @inf_comm α _ y x, eq_self_iff_true]
theorem inf_sup_right : (y ⊔ z) ⊓ x = y ⊓ x ⊔ z ⊓ x := by
Mathlib.Order.Lattice.773_0.wE3igZl9MFbJBfv
theorem inf_sup_right : (y ⊔ z) ⊓ x = y ⊓ x ⊔ z ⊓ x
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : DistribLattice α x y z : α h₁ : x ⊓ z ≤ y ⊓ z h₂ : x ⊔ z ≤ y ⊔ z ⊢ y ⊓ z ⊔ x = (y ⊔ x) ⊓ (x ⊔ z)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rw [sup_inf_right, @sup_comm _ _ x]
theorem le_of_inf_le_sup_le (h₁ : x ⊓ z ≤ y ⊓ z) (h₂ : x ⊔ z ≤ y ⊔ z) : x ≤ y := calc x ≤ y ⊓ z ⊔ x := le_sup_right _ = (y ⊔ x) ⊓ (x ⊔ z) := by
Mathlib.Order.Lattice.777_0.wE3igZl9MFbJBfv
theorem le_of_inf_le_sup_le (h₁ : x ⊓ z ≤ y ⊓ z) (h₂ : x ⊔ z ≤ y ⊔ z) : x ≤ y
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a✝ b✝ c d a b : α p : α → Prop ha : p a hb : p b h : a ≤ b ⊢ p (a ⊔ b)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_right.2 h]
theorem sup_ind (a b : α) {p : α → Prop} (ha : p a) (hb : p b) : p (a ⊔ b) := (IsTotal.total a b).elim (fun h : a ≤ b => by
Mathlib.Order.Lattice.830_0.wE3igZl9MFbJBfv
theorem sup_ind (a b : α) {p : α → Prop} (ha : p a) (hb : p b) : p (a ⊔ b)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a✝ b✝ c d a b : α p : α → Prop ha : p a hb : p b h : b ≤ a ⊢ p (a ⊔ b)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_left.2 h]
theorem sup_ind (a b : α) {p : α → Prop} (ha : p a) (hb : p b) : p (a ⊔ b) := (IsTotal.total a b).elim (fun h : a ≤ b => by rwa [sup_eq_right.2 h]) fun h => by
Mathlib.Order.Lattice.830_0.wE3igZl9MFbJBfv
theorem sup_ind (a b : α) {p : α → Prop} (ha : p a) (hb : p b) : p (a ⊔ b)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α ⊢ a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact ⟨fun h => (le_total c b).imp (fun bc => by rwa [sup_eq_left.2 bc] at h) (fun bc => by rwa [sup_eq_right.2 bc] at h), fun h => h.elim le_sup_of_le_left le_sup_of_le_right⟩
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c := by
Mathlib.Order.Lattice.835_0.wE3igZl9MFbJBfv
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α h : a ≤ b ⊔ c bc : c ≤ b ⊢ a ≤ b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_left.2 bc] at h
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c := by exact ⟨fun h => (le_total c b).imp (fun bc => by
Mathlib.Order.Lattice.835_0.wE3igZl9MFbJBfv
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α h : a ≤ b ⊔ c bc : b ≤ c ⊢ a ≤ c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_right.2 bc] at h
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c := by exact ⟨fun h => (le_total c b).imp (fun bc => by rwa [sup_eq_left.2 bc] at h) (fun bc => by
Mathlib.Order.Lattice.835_0.wE3igZl9MFbJBfv
@[simp] theorem le_sup_iff : a ≤ b ⊔ c ↔ a ≤ b ∨ a ≤ c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α ⊢ a < b ⊔ c ↔ a < b ∨ a < c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exact ⟨fun h => (le_total c b).imp (fun bc => by rwa [sup_eq_left.2 bc] at h) (fun bc => by rwa [sup_eq_right.2 bc] at h), fun h => h.elim lt_sup_of_lt_left lt_sup_of_lt_right⟩
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c := by
Mathlib.Order.Lattice.844_0.wE3igZl9MFbJBfv
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α h : a < b ⊔ c bc : c ≤ b ⊢ a < b
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_left.2 bc] at h
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c := by exact ⟨fun h => (le_total c b).imp (fun bc => by
Mathlib.Order.Lattice.844_0.wE3igZl9MFbJBfv
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝ : LinearOrder α a b c d : α h : a < b ⊔ c bc : b ≤ c ⊢ a < c
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
rwa [sup_eq_right.2 bc] at h
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c := by exact ⟨fun h => (le_total c b).imp (fun bc => by rwa [sup_eq_left.2 bc] at h) (fun bc => by
Mathlib.Order.Lattice.844_0.wE3igZl9MFbJBfv
@[simp] theorem lt_sup_iff : a < b ⊔ c ↔ a < b ∨ a < c
Mathlib_Order_Lattice
α : Type u β : Type v inst✝² : SemilatticeSup α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 ⊢ (fun x x_1 => x ⊔ x_1) = maxDefault
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
ext x y
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α) := by
Mathlib.Order.Lattice.891_0.wE3igZl9MFbJBfv
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α)
Mathlib_Order_Lattice
case h.h α : Type u β : Type v inst✝² : SemilatticeSup α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α ⊢ x ⊔ y = maxDefault x y
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
unfold maxDefault
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α) := by ext x y
Mathlib.Order.Lattice.891_0.wE3igZl9MFbJBfv
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α)
Mathlib_Order_Lattice
case h.h α : Type u β : Type v inst✝² : SemilatticeSup α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α ⊢ x ⊔ y = if x ≤ y then y else x
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
split_ifs with h'
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α) := by ext x y unfold maxDefault
Mathlib.Order.Lattice.891_0.wE3igZl9MFbJBfv
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α)
Mathlib_Order_Lattice
case pos α : Type u β : Type v inst✝² : SemilatticeSup α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α h' : x ≤ y ⊢ x ⊔ y = y case neg α : Type u β : Type v inst✝² : SemilatticeSup α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α h' ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exacts [sup_of_le_right h', sup_of_le_left $ (total_of (· ≤ ·) x y).resolve_left h']
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α) := by ext x y unfold maxDefault split_ifs with h'
Mathlib.Order.Lattice.891_0.wE3igZl9MFbJBfv
theorem sup_eq_maxDefault [SemilatticeSup α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊔ ·) = (maxDefault : α → α → α)
Mathlib_Order_Lattice
α : Type u β : Type v inst✝² : SemilatticeInf α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 ⊢ (fun x x_1 => x ⊓ x_1) = minDefault
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
ext x y
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α) := by
Mathlib.Order.Lattice.900_0.wE3igZl9MFbJBfv
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α)
Mathlib_Order_Lattice
case h.h α : Type u β : Type v inst✝² : SemilatticeInf α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α ⊢ x ⊓ y = minDefault x y
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
unfold minDefault
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α) := by ext x y
Mathlib.Order.Lattice.900_0.wE3igZl9MFbJBfv
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α)
Mathlib_Order_Lattice
case h.h α : Type u β : Type v inst✝² : SemilatticeInf α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α ⊢ x ⊓ y = if x ≤ y then x else y
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
split_ifs with h'
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α) := by ext x y unfold minDefault
Mathlib.Order.Lattice.900_0.wE3igZl9MFbJBfv
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α)
Mathlib_Order_Lattice
case pos α : Type u β : Type v inst✝² : SemilatticeInf α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α h' : x ≤ y ⊢ x ⊓ y = x case neg α : Type u β : Type v inst✝² : SemilatticeInf α inst✝¹ : DecidableRel fun x x_1 => x ≤ x_1 inst✝ : IsTotal α fun x x_1 => x ≤ x_1 x y : α h' ...
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl -/ import Mathlib.Data.Bool.Basic import Mathlib.Init.Order.Defs import Mathlib.Order.Monotone.Basic import Mathlib.Order.ULift import Mathlib.Tactic.GCongr.Core #align...
exacts [inf_of_le_left h', inf_of_le_right $ (total_of (· ≤ ·) x y).resolve_left h']
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α) := by ext x y unfold minDefault split_ifs with h'
Mathlib.Order.Lattice.900_0.wE3igZl9MFbJBfv
theorem inf_eq_minDefault [SemilatticeInf α] [DecidableRel ((· ≤ ·) : α → α → Prop)] [IsTotal α (· ≤ ·)] : (· ⊓ ·) = (minDefault : α → α → α)
Mathlib_Order_Lattice