Skip to content

Commit

Permalink
Included Real scope for notational purposes.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeTsoukalas committed Aug 27, 2024
1 parent 7125999 commit 3052cbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lean4/src/putnam_1980_b1.lean
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import Mathlib
open BigOperators

open Real

abbrev putnam_1980_b1_solution : Set ℝ := sorry
-- {c : ℝ | c ≥ 1 / 2}
theorem putnam_1980_b1
(c : ℝ)
: (∀ x : ℝ, (Real.exp x + Real.exp (-x)) / 2Real.exp (c * x ^ 2)) ↔ c ∈ putnam_1980_b1_solution :=
: (∀ x : ℝ, (exp x + exp (-x)) / 2 ≤ exp (c * x ^ 2)) ↔ c ∈ putnam_1980_b1_solution :=
sorry

0 comments on commit 3052cbb

Please sign in to comment.