Zulip Chat Archive
Stream: mathlib4
Topic: RMK theorem for `NNReal`
Yoh Tanimoto (Nov 19 2024 at 06:05):
I am trying to get the Riesz-Markov-Kakutani theorem in mathlib : ∫⁻ (x : X), f x ∂(μ Λ) = Λ f
, where Λ
is a positive linear functional on compactly supported continuous functions on some space X
.
The proof I know from Rudin's book shows first the inequality Λ f ≤ ∫⁻ (x : X), (f x) ∂μ Λ
, then uses linearity and apply it to -f
, getting the equality.
In the current formulation rieszContentAux Λ
is NNReal
-linear, but there is no Neg
there. What should I do? It is possible to write the proof of the reversed inequality, but that will be very long (cf. the Real
version https://github.com/yoh-tanimoto/mathlib4/blob/yoh/yoh/RMK/linearRMK.lean, ~600 lines for one direction)
Yoh Tanimoto (Nov 24 2024 at 15:24):
probably I should define toReal
toNNReal
for positive linear functionals?
cf. #maths > Riesz representation theorem
@Sébastien Gouëzel @Kalle Kytölä @Yaël Dillies
Last updated: May 02 2025 at 03:31 UTC