You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating an issue to track the various tasks on the proof of FTC. Apparently it's pretty hard, and requires work from many sources, and we're working on several streams:
Track A: Tietze extension theorem (done)
Urysohn (Urysohn's Lemma #900 but the full statement is much easier once HB is done)
radon-nikodym + lebesgue differentiation -> FTC 2 (maybe something hard about absolute continuity)
Memo taken from the conversion of PR #1118@zstone1
--->8---
The end goal being applying radon nikodym for FTC.
This [PR #1118] proves that if f has bounded variation, it can be decomposed into a positive part and negative part. And that those have sane continuity behaviors.
The remaining bit to apply radon nikodym is
Definition lusinN (A : set R) (f: R -> \bar R) := forall E, E <= A -> measurable A -> mu A = 0 -> mu (f @` A) = 0
Definition absolute_continuity a b f := {within [a,b], continuous f} /\ bounded_variation a b f /\ lusinN [a,b] f.
Lemma lusinN_TV a b f : absolute_continuity a b f -> lusinN (TV a ^~ f).
Lemma absolute_continuity a b f -> mu << "lebesgue_stiljes_charge f" (should be easy corrolary of lusinN_TV)
That'll give us enough to prove FTC. But to make it useful, we'll also need
Creating an issue to track the various tasks on the proof of FTC. Apparently it's pretty hard, and requires work from many sources, and we're working on several streams:
Track A: Tietze extension theorem (done)
Track B: Continuous functions are dense in L1 (done)
Track C: Hardy LIttlewood
Track D: Putting it all together
Memo taken from the conversion of PR #1118 @zstone1
--->8---
The end goal being applying radon nikodym for FTC.
This [PR #1118] proves that if
fhas bounded variation, it can be decomposed into a positive part and negative part. And that those have sane continuity behaviors.The remaining bit to apply radon nikodym is
That'll give us enough to prove FTC. But to make it useful, we'll also need
which might be best to go through lipschitz, I'm not sure.
--->8---