English
If a1 ≤ a2 and b1 < b2 and 0 < a2 and 0 ≤ b1, then a1 • b1 < a2 • b2.
Русский
Если a1 ≤ a2 и b1 < b2 и 0 < a2 и 0 ≤ b1, то a1 • b1 < a2 • b2.
LaTeX
$$$a_1 \le a_2 \;\land\; b_1 < b_2 \;\land\; 0 < a_2 \;\land\; 0 \le b_1 \Rightarrow a_1 \cdot b_1 < a_2 \cdot b_2$$$
Lean4
theorem smul_lt_smul_of_le_of_lt' [PosSMulStrictMono α β] [SMulPosMono α β] (ha : a₁ ≤ a₂) (hb : b₁ < b₂) (h₂ : 0 < a₂)
(h₁ : 0 ≤ b₁) : a₁ • b₁ < a₂ • b₂ :=
(smul_le_smul_of_nonneg_right ha h₁).trans_lt (smul_lt_smul_of_pos_left hb h₂)