English
If f and g are concave on s with f(x) ≤ 0 and g(x) ≤ 0 for x ∈ s, and MonovaryOn f g s holds, then the product h = f · g is convex on s.
Русский
Если f и g конкавны на s, f(x) ≤ 0, g(x) ≤ 0 на s, и MonovaryOn(f,g,s) выполняется, то h = f g выпукло на s.
LaTeX
$$$\begin{aligned} &\text{ConcaveOn}(s,f) \land \text{ConcaveOn}(s,g) \land \forall x\in s: f(x) \le 0, \ g(x) \le 0 \\ &\ &\text{MonovaryOn}(f,g,s) \Rightarrow \text{ConvexOn}(s, f\cdot g). \end{aligned}$$$
Lean4
theorem mul' (hf : ConcaveOn 𝕜 s f) (hg : ConcaveOn 𝕜 s g) (hf₀ : ∀ ⦃x⦄, x ∈ s → f x ≤ 0) (hg₀ : ∀ ⦃x⦄, x ∈ s → g x ≤ 0)
(hfg : MonovaryOn f g s) : ConvexOn 𝕜 s (f * g) :=
hf.smul'' hg hf₀ hg₀ hfg