Oppermann's Conjecture
Exact formalization occurrence from the upstream source collection.
- Source category
- research open
- Formal proof
- Not retained
- Vela current state
- No Repository Result attached
Source file
- Exact commit
- 33c6a2dcafc5e3cdebfc083203b0a051309ea5b4
- File blob
- 1a9ed16f83e1967a34727f3ef91be9070a6cc717
Oppermann.oppermann_conjecture
Open whole fileExact retained declaration excerpt — not the whole file.
/--
**Oppermann's Conjecture**:
For every integer $x \ge 2$, the following hold:
- There exists a prime between $x(x-1)$ and $x^2$.
- There exists a prime between $x^2$ and $x(x+1)$.
-/
@[category research open, AMS 11]
theorem oppermann_conjecture (x : ℕ) (hx : 2 ≤ x) :
(∃ p ∈ Ioo (x * (x - 1)) (x^2), p.Prime) ∧
(∃ p ∈ Ioo (x^2) (x * (x + 1)), p.Prime) := by
sorry