File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 116116- in ` hoelder.v ` :
117117 + definition ` Lnorm ` generalized to functions with codomain ` \bar R `
118118 (this impacts the notation ` 'N_p[f] ` )
119- + lemmas ` Lnorm1 ` , ` eq_Lnorm ` (from ` f : _ -> R ` to ` f : _ -> \bar R ` )
119+ + lemmas ` Lnorm1 ` , ` eq_Lnorm ` , ` Lnorm_counting ` (from ` f : _ -> R ` to ` f : _ -> \bar R ` )
120120
121121- in ` probability.v `
122122 + lemma ` cantelli `
Original file line number Diff line number Diff line change @@ -176,10 +176,10 @@ Section lnorm.
176176Context d {T : measurableType d} {R : realType}.
177177Local Open Scope ereal_scope.
178178(** lp-norm is just Lp-norm applied to counting *)
179- Local Notation "'N_ p [ f ]" := (Lnorm counting p (EFin \o f) ).
179+ Local Notation "'N_ p [ f ]" := (Lnorm counting p f ).
180180
181- Lemma Lnorm_counting p (f : R ^nat) : (0 < p)%R ->
182- 'N_p%:E [f] = (\sum_(k <oo) (`| f k | `^ p)%:E ) `^ p^-1.
181+ Lemma Lnorm_counting p (f : (\bar R) ^nat) : (0 < p)%R ->
182+ 'N_p%:E [f] = (\sum_(k <oo) (`| f k | `^ p)) `^ p^-1.
183183Proof .
184184by move=> p0; rewrite unlock ge0_integral_count// => k; rewrite poweR_ge0.
185185Qed .
293293Lemma hoelder (f g : T -> R) p q :
294294 measurable_fun [set: T] f -> measurable_fun [set: T] g ->
295295 (0 < p)%R -> (0 < q)%R -> (p^-1 + q^-1 = 1)%R ->
296- 'N_1[(f \* g)%R] <= 'N_p%:E[f] * 'N_q%:E[g].
296+ 'N_1[(f \* g)%R] <= 'N_p%:E[f] * 'N_q%:E[g].
297297Proof .
298298move=> mf mg p0 q0 pq.
299299have [f0|f0] := eqVneq 'N_p%:E[f] 0%E; first exact: hoelder0.
You can’t perform that action at this time.
0 commit comments