English
If f is analytic on the image of Real, then the real part of f, restricted to Real, is analytic on that set.
Русский
Если f аналитична на образе Real, то вещевая часть f ограниченная на Real аналитична на этом множестве.
LaTeX
$$$\\text{AnalyticOn}_\\mathbb{R}(\\operatorname{Re}\\circ f)(s).$$$
Lean4
theorem re_ofReal (hf : AnalyticOn ℂ f (ofReal '' s)) : AnalyticOn ℝ (fun x : ℝ ↦ (f x).re) s :=
((Complex.reCLM.analyticOn _).comp hf.restrictScalars (mapsTo_image f _)).comp (Complex.ofRealCLM.analyticOn _)
(mapsTo_image ofReal s)