The Noether–Lefschetz window of a surface in ℙ³ and the sequence A005581

Lax894236.NoetherLefschetzWindow · concepts/Lax894236/NoetherLefschetzWindow.lean · lax-894236

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Natural Language Statement

    Theorem

    For a smooth surface of degree d3d \ge 3 in P3\mathbb{P}^3, every component of the Noether–Lefschetz locus has codimension at least d3d - 3 (Green, Voisin) and at most pg=(d13)p_g = \binom{d-1}{3}. The geometry behind the lower bound is taken from the literature; this concept compares the two bounds as functions of dd, with m=d1m = d - 1 as in GeometricGenusGeometricGenus.

    The first two statements are the inequality d3pgd - 3 \le p_g for all d3d \ge 3 and its strictness for d5d \ge 5; the third is the exact case of equality: the lower bound meets pgp_g precisely for d=3d = 3 and d=4d = 4. The last statement identifies the gap pg(d3)p_g - (d - 3), the "window" between the two bounds, with the OEIS sequence A005581 evaluated at d3d - 3: as a polynomial identity without division, (d1)(d2)(d3)6(d3)=(d4)(d3)(d+1)(d-1)(d-2)(d-3) - 6(d-3) = (d-4)(d-3)(d+1), where the right-hand side is six times A005581(d3)=(d4)(d3)(d+1)6A005581(d-3) = \tfrac{(d-4)(d-3)(d+1)}{6}. It was first observed numerically for d200d \le 200 and holds for every integer dd.

    Concept map
    2 concepts
    100%
    Proven claimThis conceptRelated conceptA → B: B builds on A
    Evidence

    This concept declares 4 statements. Each proof establishes one of them relative to its assumptions.

    Lean source view on GitHub

    1import Lax894236.GeometricGenus
    2
    3/-!
    4---
    5title: The Noether–Lefschetz window of a surface in ℙ³ and the sequence A005581
    6type: theorem
    7---
    8For a smooth surface of degree d3d \ge 3 in P3\mathbb{P}^3, every component of the
    9Noether–Lefschetz locus has codimension at least d3d - 3 (Green, Voisin) and at
    10most pg=(d13)p_g = \binom{d-1}{3}. The geometry behind the lower bound is taken from
    11the literature; this concept compares the two bounds as functions of dd, with
    12m=d1m = d - 1 as in `GeometricGenus`.
    13
    14The first two statements are the inequality d3pgd - 3 \le p_g for all d3d \ge 3
    15and its strictness for d5d \ge 5; the third is the exact case of equality: the
    16lower bound meets pgp_g precisely for d=3d = 3 and d=4d = 4. The last statement
    17identifies the gap pg(d3)p_g - (d - 3), the "window" between the two bounds, with the
    18OEIS sequence A005581 evaluated at d3d - 3: as a polynomial identity without
    19division, (d1)(d2)(d3)6(d3)=(d4)(d3)(d+1)(d-1)(d-2)(d-3) - 6(d-3) = (d-4)(d-3)(d+1), where the right-hand side
    20is six times A005581(d3)=(d4)(d3)(d+1)6A005581(d-3) = \tfrac{(d-4)(d-3)(d+1)}{6}. It was first observed
    21numerically for d200d \le 200 and holds for every integer dd.
    22-/
    23
    24namespace Lax894236.NoetherLefschetzWindow
    25
    26open Lax894236.GeometricGenus
    27
    28/-- The lower bound `d - 3` never exceeds `p_g` for `d ≥ 3`. -/
    29axiom bound_le_pg (m : ℕ) (hm : 2 ≤ m) : m - 2pg m 2
    30
    31/-- For `d ≥ 5` the inequality is strict. -/
    32axiom 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`. -/
    35axiom 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`. -/
    39axiom window_eq_A005581 (d : ℤ) :
    40 (d - 1) * (d - 2) * (d - 3) - 6 * (d - 3) = (d - 4) * (d - 3) * (d + 1)
    41
    42end Lax894236.NoetherLefschetzWindow
    43
    Show ProofShow ProofShow ProofShow Proof
    Builds on
    Used by

    none

    From Mathlib

    none

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…