theorem
proved
term proof
loadRatio_pos
show as:
view Lean formalization →
formal statement (Lean)
93theorem loadRatio_pos {area demand : ℝ} (hArea : 0 < area) (hDemand : 0 < demand) :
94 0 < loadRatio area demand := by
proof body
Term-mode proof.
95 unfold loadRatio
96 exact div_pos hDemand (bandwidth_pos hArea)
97