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 #
Real.IsConjExponent
: Predicate for two real numbers to be conjugate.Real.conjExponent
: Conjugate exponent of a real number.NNReal.IsConjExponent
: Predicate for two nonnegative real numbers to be conjugate.NNReal.conjExponent
: Conjugate exponent of a nonnegative real number.ENNReal.IsConjExponent
: Predicate for two extended nonnegative real numbers to be conjugate.ENNReal.conjExponent
: Conjugate exponent of an extended nonnegative real number.
TODO #
- Eradicate the
1 / p
spelling in lemmas. - Do we want an
ℝ≥0∞
version?
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.
- one_lt : 1 < p
Instances For
Alias of the reverse direction of NNReal.isConjExponent_coe
.
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
Alias of the reverse direction of ENNReal.isConjExponent_coe
.