Skip to content

Commit

Permalink
Fix definition of PreProofData.hasBoundedStrongType_Tstar (#212)
Browse files Browse the repository at this point in the history
The definition of `PreProofData.hasBoundedStrongType_Tstar` said that
`(nontangentialOperator K · · |>.toReal)` has bounded strong type, but I
think the `toReal` is a mistake; with the `toReal` present, a case where
the nontangential operator is ∞ everywhere would qualify as bounded
strong type.
  • Loading branch information
js2357 authored Jan 20, 2025
1 parent 0138d63 commit 26325e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Carleson/Defs.lean
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class PreProofData {X : Type*} (a : outParam ℕ) (q : outParam ℝ) (K : outPar
c : IsCancellative X (defaultτ a)
hcz : IsOneSidedKernel a K
hasBoundedStrongType_Tstar :
HasBoundedStrongType (nontangentialOperator K · · |>.toReal) 2 2 volume volume (C_Ts a)
HasBoundedStrongType (nontangentialOperator K · ·) 2 2 volume volume (C_Ts a)
measurableSet_F : MeasurableSet F
measurableSet_G : MeasurableSet G
measurable_σ₁ : Measurable σ₁
Expand Down
2 changes: 1 addition & 1 deletion Carleson/MetricCarleson.lean
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ theorem metric_carleson [CompatibleFunctions ℝ X (defaultA a)]
[IsCancellative X (defaultτ a)] [IsOneSidedKernel a K]
(ha : 4 ≤ a) (hq : q ∈ Ioc 1 2) (hqq' : q.IsConjExponent q')
(hF : MeasurableSet F) (hG : MeasurableSet G)
(hT : HasBoundedStrongType (nontangentialOperator K · · |>.toReal) 2 2 volume volume (C_Ts a))
(hT : HasBoundedStrongType (nontangentialOperator K · ·) 2 2 volume volume (C_Ts a))
(f : X → ℂ) (hmf : Measurable f) (hf : ∀ x, ‖f x‖ ≤ F.indicator 1 x) :
∫⁻ x in G, carlesonOperator K f x ≤
ENNReal.ofReal (C1_0_2 a q) * (volume G) ^ q'⁻¹ * (volume F) ^ q⁻¹ := by
Expand Down

0 comments on commit 26325e3

Please sign in to comment.