English
If f and g are analytic within at s around x, then x ↦ (f(x), g(x)) is analytic within at s around x.
Русский
Если f и g аналитичны внутри s около x, то отображение x ↦ (f(x), g(x)) аналитично внутри s.
LaTeX
$$$\text{AnalyticWithinAt}(f, s, x) \land \text{AnalyticWithinAt}(g, s, x) \Rightarrow \text{AnalyticWithinAt}(x \mapsto (f(x), g(x)), s, x)$$$
Lean4
theorem sub (hf : AnalyticOn 𝕜 f s) (hg : AnalyticOn 𝕜 g s) : AnalyticOn 𝕜 (f - g) s := fun z hz =>
(hf z hz).sub (hg z hz)