The Noether–Lefschetz window of a surface in ℙ³ and the sequence A005581
Lax894236.NoetherLefschetzWindow · concepts/Lax894236/NoetherLefschetzWindow.lean · lax-894236
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
For a smooth surface of degree in , every component of the Noether–Lefschetz locus has codimension at least (Green, Voisin) and at most . The geometry behind the lower bound is taken from the literature; this concept compares the two bounds as functions of , with as in .
The first two statements are the inequality for all and its strictness for ; the third is the exact case of equality: the lower bound meets precisely for and . The last statement identifies the gap , the "window" between the two bounds, with the OEIS sequence A005581 evaluated at : as a polynomial identity without division, , where the right-hand side is six times . It was first observed numerically for and holds for every integer .
Concept map
Evidence
Lean source view on GitHub
| 1 | import Lax894236.GeometricGenus |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: The Noether–Lefschetz window of a surface in ℙ³ and the sequence A005581 |
| 6 | type: theorem |
| 7 | --- |
| 8 | For a smooth surface of degree in , every component of the |
| 9 | Noether–Lefschetz locus has codimension at least (Green, Voisin) and at |
| 10 | most . The geometry behind the lower bound is taken from |
| 11 | the literature; this concept compares the two bounds as functions of , with |
| 12 | as in `GeometricGenus`. |
| 13 | |
| 14 | The first two statements are the inequality for all |
| 15 | and its strictness for ; the third is the exact case of equality: the |
| 16 | lower bound meets precisely for and . The last statement |
| 17 | identifies the gap , the "window" between the two bounds, with the |
| 18 | OEIS sequence A005581 evaluated at : as a polynomial identity without |
| 19 | division, , where the right-hand side |
| 20 | is six times . It was first observed |
| 21 | numerically for and holds for every integer . |
| 22 | -/ |
| 23 | |
| 24 | namespace Lax894236.NoetherLefschetzWindow |
| 25 | |
| 26 | open Lax894236.GeometricGenus |
| 27 | |
| 28 | /-- The lower bound `d - 3` never exceeds `p_g` for `d ≥ 3`. -/ |
| 29 | axiom bound_le_pg (m : ℕ) (hm : 2 ≤ m) : m - 2 ≤ pg m 2 |
| 30 | |
| 31 | /-- For `d ≥ 5` the inequality is strict. -/ |
| 32 | axiom bound_lt_pg (m : ℕ) (hm : 4 ≤ m) : m - 2 < pg m 2 |
| 33 | |
| 34 | /-- The lower bound equals `p_g` exactly for `d = 3` and `d = 4`. -/ |
| 35 | axiom bound_eq_pg_iff (m : ℕ) (hm : 2 ≤ m) : m - 2 = pg m 2 ↔ m = 2 ∨ m = 3 |
| 36 | |
| 37 | /-- Six times the window `p_g − (d − 3)` is `(d−4)(d−3)(d+1)`, six times |
| 38 | `A005581(d−3)`, for every integer `d`. -/ |
| 39 | axiom window_eq_A005581 (d : ℤ) : |
| 40 | (d - 1) * (d - 2) * (d - 3) - 6 * (d - 3) = (d - 4) * (d - 3) * (d + 1) |
| 41 | |
| 42 | end Lax894236.NoetherLefschetzWindow |
| 43 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments