theorem
proved
term proof
cryptography_one_statement
show as:
view Lean formalization →
formal statement (Lean)
100theorem cryptography_one_statement :
101 0 < perBitCost ∧
102 (∀ n, totalRecoveryCost (n + 1) = totalRecoveryCost n + perBitCost) ∧
103 (∀ n, totalRecoveryCost (2 * n) = 2 * totalRecoveryCost n) :=
proof body
Term-mode proof.
104 ⟨perBitCost_pos, totalRecoveryCost_succ, totalRecoveryCost_double⟩
105
106end
107
108end RSCryptographicBound
109end Cryptography
110end IndisputableMonolith