Documentation

Mathlib.Algebra.Order.Nonneg.Basic

The type of nonnegative elements #

This file defines instances and prove some properties about the nonnegative elements {x : α // 0 ≤ x} of an arbitrary type α.

Currently we only state instances and states some simp/norm_cast lemmas.

When α is , this will give us some properties about ℝ≥0.

Implementation Notes #

Instead of {x : α // 0 ≤ x} we could also use Set.Ici (0 : α), which is definitionally equal. However, using the explicit subtype has a big advantage: when writing an element explicitly with a proof of nonnegativity as ⟨x, hx⟩, the hx is expected to have type 0 ≤ x. If we would use Ici 0, then the type is expected to be x ∈ Ici 0. Although these types are definitionally equal, this often confuses the elaborator. Similar problems arise when doing cases on an element.

The disadvantage is that we have to duplicate some instances about Set.Ici to this subtype.

instance Nonneg.inhabited {α : Type u_1} [Preorder α] {a : α} :
Inhabited { x : α // a x }
Equations
instance Nonneg.zero {α : Type u_1} [Zero α] [Preorder α] :
Zero { x : α // 0 x }
Equations
@[simp]
theorem Nonneg.coe_zero {α : Type u_1} [Zero α] [Preorder α] :
0 = 0
@[simp]
theorem Nonneg.mk_eq_zero {α : Type u_1} [Zero α] [Preorder α] {x : α} (hx : 0 x) :
x, hx = 0 x = 0
instance Nonneg.add {α : Type u_1} [AddZeroClass α] [Preorder α] [AddLeftMono α] :
Add { x : α // 0 x }
Equations
  • Nonneg.add = { add := fun (x y : { x : α // 0 x }) => x + y, }
@[simp]
theorem Nonneg.mk_add_mk {α : Type u_1} [AddZeroClass α] [Preorder α] [AddLeftMono α] {x y : α} (hx : 0 x) (hy : 0 y) :
x, hx + y, hy = x + y,
@[simp]
theorem Nonneg.coe_add {α : Type u_1} [AddZeroClass α] [Preorder α] [AddLeftMono α] (a b : { x : α // 0 x }) :
(a + b) = a + b
instance Nonneg.nsmul {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] :
SMul { x : α // 0 x }
Equations
@[simp]
theorem Nonneg.nsmul_mk {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] (n : ) {x : α} (hx : 0 x) :
n x, hx = n x,
@[simp]
theorem Nonneg.coe_nsmul {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] (n : ) (a : { x : α // 0 x }) :
(n a) = n a
instance Nonneg.one {α : Type u_1} [Zero α] [One α] [LE α] [ZeroLEOneClass α] :
One { x : α // 0 x }
Equations
@[simp]
theorem Nonneg.coe_one {α : Type u_1} [Zero α] [One α] [LE α] [ZeroLEOneClass α] :
1 = 1
@[simp]
theorem Nonneg.mk_eq_one {α : Type u_1} [Zero α] [One α] [LE α] [ZeroLEOneClass α] {x : α} (hx : 0 x) :
x, hx = 1 x = 1
instance Nonneg.mul {α : Type u_1} [MulZeroClass α] [Preorder α] [PosMulMono α] :
Mul { x : α // 0 x }
Equations
  • Nonneg.mul = { mul := fun (x y : { x : α // 0 x }) => x * y, }
@[simp]
theorem Nonneg.coe_mul {α : Type u_1} [MulZeroClass α] [Preorder α] [PosMulMono α] (a b : { x : α // 0 x }) :
(a * b) = a * b
@[simp]
theorem Nonneg.mk_mul_mk {α : Type u_1} [MulZeroClass α] [Preorder α] [PosMulMono α] {x y : α} (hx : 0 x) (hy : 0 y) :
x, hx * y, hy = x * y,
instance Nonneg.addMonoid {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] :
AddMonoid { x : α // 0 x }
Equations
def Nonneg.coeAddMonoidHom {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] :
{ x : α // 0 x } →+ α

Coercion {x : α // 0 ≤ x} → α as an AddMonoidHom.

Equations
Instances For
    theorem Nonneg.nsmul_coe {α : Type u_1} [AddMonoid α] [Preorder α] [AddLeftMono α] (n : ) (r : { x : α // 0 x }) :
    (n r) = n r
    instance Nonneg.addCommMonoid {α : Type u_1} [AddCommMonoid α] [Preorder α] [AddLeftMono α] :
    AddCommMonoid { x : α // 0 x }
    Equations
    instance Nonneg.natCast {α : Type u_1} [AddMonoidWithOne α] [PartialOrder α] [AddLeftMono α] [ZeroLEOneClass α] :
    NatCast { x : α // 0 x }
    Equations
    @[simp]
    theorem Nonneg.coe_natCast {α : Type u_1} [AddMonoidWithOne α] [PartialOrder α] [AddLeftMono α] [ZeroLEOneClass α] (n : ) :
    n = n
    @[deprecated Nonneg.coe_natCast (since := "2024-04-17")]
    theorem Nonneg.coe_nat_cast {α : Type u_1} [AddMonoidWithOne α] [PartialOrder α] [AddLeftMono α] [ZeroLEOneClass α] (n : ) :
    n = n

    Alias of Nonneg.coe_natCast.

    @[simp]
    theorem Nonneg.mk_natCast {α : Type u_1} [AddMonoidWithOne α] [PartialOrder α] [AddLeftMono α] [ZeroLEOneClass α] (n : ) :
    n, = n
    @[deprecated Nonneg.mk_natCast (since := "2024-04-17")]
    theorem Nonneg.mk_nat_cast {α : Type u_1} [AddMonoidWithOne α] [PartialOrder α] [AddLeftMono α] [ZeroLEOneClass α] (n : ) :
    n, = n

    Alias of Nonneg.mk_natCast.

    @[simp]
    theorem Nonneg.pow_nonneg {α : Type u_1} [MonoidWithZero α] [Preorder α] [ZeroLEOneClass α] [PosMulMono α] {a : α} (H : 0 a) (n : ) :
    0 a ^ n
    instance Nonneg.pow {α : Type u_1} [MonoidWithZero α] [Preorder α] [ZeroLEOneClass α] [PosMulMono α] :
    Pow { x : α // 0 x }
    Equations
    @[simp]
    theorem Nonneg.coe_pow {α : Type u_1} [MonoidWithZero α] [Preorder α] [ZeroLEOneClass α] [PosMulMono α] (a : { x : α // 0 x }) (n : ) :
    (a ^ n) = a ^ n
    @[simp]
    theorem Nonneg.mk_pow {α : Type u_1} [MonoidWithZero α] [Preorder α] [ZeroLEOneClass α] [PosMulMono α] {x : α} (hx : 0 x) (n : ) :
    x, hx ^ n = x ^ n,
    instance Nonneg.semiring {α : Type u_1} [Semiring α] [PartialOrder α] [ZeroLEOneClass α] [AddLeftMono α] [PosMulMono α] :
    Semiring { x : α // 0 x }
    Equations
    def Nonneg.coeRingHom {α : Type u_1} [Semiring α] [PartialOrder α] [ZeroLEOneClass α] [AddLeftMono α] [PosMulMono α] :
    { x : α // 0 x } →+* α

    Coercion {x : α // 0 ≤ x} → α as a RingHom.

    Equations
    Instances For
      instance Nonneg.commSemiring {α : Type u_1} [CommSemiring α] [PartialOrder α] [ZeroLEOneClass α] [AddLeftMono α] [PosMulMono α] :
      CommSemiring { x : α // 0 x }
      Equations
      def Nonneg.toNonneg {α : Type u_1} [Zero α] [LinearOrder α] (a : α) :
      { x : α // 0 x }

      The function a ↦ max a 0 of type α → {x : α // 0 ≤ x}.

      Equations
      Instances For
        @[simp]
        theorem Nonneg.coe_toNonneg {α : Type u_1} [Zero α] [LinearOrder α] {a : α} :
        (Nonneg.toNonneg a) = a 0
        @[simp]
        theorem Nonneg.toNonneg_of_nonneg {α : Type u_1} [Zero α] [LinearOrder α] {a : α} (h : 0 a) :
        Nonneg.toNonneg a = a, h
        @[simp]
        theorem Nonneg.toNonneg_coe {α : Type u_1} [Zero α] [LinearOrder α] {a : { x : α // 0 x }} :
        @[simp]
        theorem Nonneg.toNonneg_le {α : Type u_1} [Zero α] [LinearOrder α] {a : α} {b : { x : α // 0 x }} :
        @[simp]
        theorem Nonneg.toNonneg_lt {α : Type u_1} [Zero α] [LinearOrder α] {a : { x : α // 0 x }} {b : α} :
        a < Nonneg.toNonneg b a < b
        instance Nonneg.sub {α : Type u_1} [Zero α] [LinearOrder α] [Sub α] :
        Sub { x : α // 0 x }
        Equations
        @[simp]
        theorem Nonneg.mk_sub_mk {α : Type u_1} [Zero α] [LinearOrder α] [Sub α] {x y : α} (hx : 0 x) (hy : 0 y) :
        x, hx - y, hy = Nonneg.toNonneg (x - y)