mathlib documentation

data.​real.​conjugate_exponents

data.​real.​conjugate_exponents

Real conjugate exponents

p.is_conjugate_exponent q registers the fact that the real numbers p and q are > 1 and satisfy 1/p + 1/q = 1. This property shows up often in analysis, especially when dealing with L^p spaces.

We make several basic facts available through dot notation in this situation.

We also introduce p.conjugate_exponent for p / (p-1). When p > 1, it is conjugate to p.

structure real.​is_conjugate_exponent  :
→ Prop
  • one_lt : 1 < p
  • inv_add_inv_conj : 1 / p + 1 / q = 1

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.

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

Equations
theorem real.​is_conjugate_exponent_iff {p q : } :
1 < p(p.is_conjugate_exponent q q = p / (p - 1))