English
If a null-measurable product s × t has μ(s) ≠ 0, then t is null-measurable with respect to ν.
Русский
Если с×t нулево измеримо и μ(s) ≠ 0, то t ≪ ν нулево измеримо.
LaTeX
$$NullMeasurableSet t ν$$
Lean4
/-- If `s ×ˢ t` is a null measurable set and `μ s ≠ 0`, then `t` is a null measurable set. -/
theorem _root_.MeasureTheory.NullMeasurableSet.right_of_prod {s : Set α} {t : Set β}
(h : NullMeasurableSet (s ×ˢ t) (μ.prod ν)) (hs : μ s ≠ 0) : NullMeasurableSet t ν :=
by
rcases h with ⟨u, hum, hu⟩
obtain ⟨x, hxs, hx⟩ : ∃ x ∈ s, (Prod.mk x ⁻¹' (s ×ˢ t)) =ᵐ[ν] (Prod.mk x ⁻¹' u) :=
((frequently_ae_iff.2 hs).and_eventually (ae_ae_eq_curry_of_prod hu)).exists
refine ⟨Prod.mk x ⁻¹' u, measurable_prodMk_left hum, ?_⟩
rwa [mk_preimage_prod_right hxs] at hx