Documentation

Mathlib.Data.Real.ConjExponents

Real conjugate exponents #

This file defines conjugate exponents in and ℝ≥0. Real numbers p and q are conjugate if they are both greater than 1 and satisfy p⁻¹ + q⁻¹ = 1. This property shows up often in analysis, especially when dealing with L^p spaces.

Main declarations #

TODO #

structure Real.IsConjExponent (p q : ) :

Two real exponents p, q are conjugate if they are > 1 and satisfy the equality 1/p + 1/q = 1. This condition shows up in many theorems in analysis, notably related to L^p norms.

Instances For

    The conjugate exponent of p is q = p/(p-1), so that 1/p + 1/q = 1.

    Equations
    Instances For
      theorem Real.IsConjExponent.inv_inv {a b : } (ha : 0 < a) (hb : 0 < b) (hab : a + b = 1) :
      theorem Real.isConjExponent_one_div {a b : } (ha : 0 < a) (hb : 0 < b) (hab : a + b = 1) :
      structure NNReal.IsConjExponent (p q : NNReal) :

      Two nonnegative real exponents p, q are conjugate if they are > 1 and satisfy the equality 1/p + 1/q = 1. This condition shows up in many theorems in analysis, notably related to L^p norms.

      Instances For
        noncomputable def NNReal.conjExponent (p : NNReal) :

        The conjugate exponent of p is q = p/(p-1), so that 1/p + 1/q = 1.

        Equations
        Instances For
          theorem NNReal.IsConjExponent.coe {p q : NNReal} :
          p.IsConjExponent q(↑p).IsConjExponent q

          Alias of the reverse direction of NNReal.isConjExponent_coe.

          theorem NNReal.IsConjExponent.inv_inv {a b : NNReal} (ha : a 0) (hb : b 0) (hab : a + b = 1) :

          Two extended nonnegative real exponents p, q are conjugate and satisfy the equality 1/p + 1/q = 1. This condition shows up in many theorems in analysis, notably related to L^p norms. Note that we permit one of the exponents to be and the other 1.

          Instances For
            noncomputable def ENNReal.conjExponent (p : ENNReal) :

            The conjugate exponent of p is q = 1 + (p - 1)⁻¹, so that 1/p + 1/q = 1.

            Equations
            Instances For

              Alias of the reverse direction of ENNReal.isConjExponent_coe.