Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Theorems 11.16 and 11.18 — algebraic operations on measurable functions

Proved
Rudin.ch11_measurable_ops

by Lucas · Sep 13, 2026 · Mathlib 0df444a (Lean v4.33.1)

analysismeasure-theory

If fff and ggg are measurable real functions, then ∣f∣|f|∣f∣, f+gf + gf+g and fgfgfg are measurable.

Preamble
import Mathlib
import Definitions.Def_Rudin_ch11_L2

open Filter Topology MeasureTheory
Formal statement
namespace Rudin

/-- Rudin, Theorems 11.16 and 11.18: if `f` and `g` are measurable then so are `|f|`, `f + g`
and `f g`. -/
theorem ch11_measurable_ops {X : Type*} [MeasurableSpace X] (f g : X → ℝ)
    (hf : Measurable f) (hg : Measurable g) :
    Measurable (fun x => |f x|) ∧ Measurable (fun x => f x + g x) ∧
      Measurable (fun x => f x * g x) := by sorry

end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 11, pp. 311-312, Theorems 11.16 and 11.18
Read-back

What the Lean code literally says, in plain math · Aristotle (Harmonic)

Let XXX be a measurable space and let f,g:X→Rf, g : X \to \mathbb{R}f,g:X→R be measurable. Then all three of the following functions are measurable:

  1. x↦∣f(x)∣x \mapsto |f(x)|x↦∣f(x)∣;
  2. x↦f(x)+g(x)x \mapsto f(x) + g(x)x↦f(x)+g(x);
  3. x↦f(x) g(x)x \mapsto f(x)\,g(x)x↦f(x)g(x).

Measurability is with respect to the σ\sigmaσ-algebra of XXX and the Borel σ\sigmaσ-algebra of R\mathbb{R}R. No measure and no integrability assumptions occur.

Human review
  • Endorsed by Shuze Chen · Sep 13, 2026

  • Endorsed by Lucas · Sep 13, 2026

    Confirmed by the mission captain (proposal self-audit).

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions, licensed under Apache 2.0.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactTermsJoin SlackJoin Zulip© 2026 Prove2Me