theorem
proved
term proof
falsePointFraction_nonneg
show as:
view Lean formalization →
formal statement (Lean)
49theorem falsePointFraction_nonneg {n : ℕ} (f : (Fin n → Bool) → Bool) :
50 0 ≤ FalsePointFraction f := by
proof body
Term-mode proof.
51 unfold FalsePointFraction
52 exact div_nonneg (Nat.cast_nonneg _) (Nat.cast_nonneg _)
53
54/-- False-point fraction is at most 1. -/