theorem
proved
term proof
totient_le
show as:
view Lean formalization →
formal statement (Lean)
129theorem totient_le (n : ℕ) : totient n ≤ n := by
proof body
Term-mode proof.
130 simp only [totient]
131 exact Nat.totient_le n
132
133/-- φ(n) > 0 iff n > 0. -/