theorem
proved
one_div_mul'
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Compat.Mathlib on GitHub at line 30.
browse module
All declarations in this module, on Recognition.
explainer page
formal source
27 exact Real.rpow_lt_one hx_pos.le hx_lt_one hy_pos
28
29-- Common simp-normalizations for division forms
30theorem one_div_mul' (x y : ℝ) : (1 / x) * y = y / x := by
31 ring
32
33theorem inv_pos_iff_one_div_pos' {x : ℝ} : (0 < x⁻¹) ↔ (0 < 1 / x) := by
34 simp [one_div]