Skip to content

Commit

Permalink
chore(measure_theory/decomposition/signed_hahn): Fixed a few typos (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vihdzp committed Dec 14, 2021
1 parent f070a69 commit 85cb4a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/measure_theory/decomposition/signed_hahn.lean
Expand Up @@ -9,9 +9,9 @@ import order.symm_diff
/-!
# Hahn decomposition
This file prove the Hahn decomposition theorem (signed version). The Hahn decomposition theorem
states that, given a signed measure `s`, there exist complement, measurable sets `i` and `j`,
such that `i` is positive and `j` is negative with repsect to `s`; that is, `s` restricted on `i`
This file proves the Hahn decomposition theorem (signed version). The Hahn decomposition theorem
states that, given a signed measure `s`, there exist complementary, measurable sets `i` and `j`,
such that `i` is positive and `j` is negative with respect to `s`; that is, `s` restricted on `i`
is non-negative and `s` restricted on `j` is non-positive.
The Hahn decomposition theorem leads to many other results in measure theory, most notably,
Expand Down Expand Up @@ -431,7 +431,7 @@ theorem exists_is_compl_positive_negative (s : signed_measure α) :
let ⟨i, hi₁, hi₂, hi₃⟩ := exists_compl_positive_negative s in
⟨i, iᶜ, hi₁, hi₂, hi₁.compl, hi₃, is_compl_compl⟩

/-- The symmetric difference of two Hahn decompositions have measure zero. -/
/-- The symmetric difference of two Hahn decompositions has measure zero. -/
lemma of_symm_diff_compl_positive_negative {s : signed_measure α}
{i j : set α} (hi : measurable_set i) (hj : measurable_set j)
(hi' : 0 ≤[i] s ∧ s ≤[iᶜ] 0) (hj' : 0 ≤[j] s ∧ s ≤[jᶜ] 0) :
Expand Down

0 comments on commit 85cb4a8

Please sign in to comment.