The arithmetic obstruction to a linear subspace class being a multiple of the hyperplane power

Lax894236.LinearSubspaceClass · concepts/Lax894236/LinearSubspaceClass.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

    Let XP2m+1X \subset \mathbb{P}^{2m+1} be a smooth hypersurface of degree dd and even dimension 2m2m containing a linear subspace LPmL \cong \mathbb{P}^m, and let hh be the hyperplane class. Two intersection numbers are standard: Lhm=1L \cdot h^m = 1 and hmhm=dh^m \cdot h^m = d. If the class of LL were a rational multiple chmc\,h^m, then cd=1c\,d = 1 and LL=c2dL \cdot L = c^2 d would be an integer, since intersection numbers of algebraic cycles are integers.

    This concept isolates the arithmetic step: for every integer d2d \ge 2 there is no rational cc with cd=1c\,d = 1 and c2dc^2 d an integer. Hence [L][L] is not a rational multiple of hmh^m for any d2d \ge 2, in every even dimension.

    Concept map
    1 concept
    100%
    Proven claimThis concept
    Evidence

    Each proof establishes this claim relative to its assumptions.

    Lean source view on GitHub

    1import Mathlib.Data.Rat.Defs
    2import Mathlib.Data.Int.Basic
    3
    4/-!
    5---
    6title: The arithmetic obstruction to a linear subspace class being a multiple of the hyperplane power
    7type: theorem
    8---
    9Let XP2m+1X \subset \mathbb{P}^{2m+1} be a smooth hypersurface of degree dd and even
    10dimension 2m2m containing a linear subspace LPmL \cong \mathbb{P}^m, and let hh
    11be the hyperplane class. Two intersection numbers are standard: Lhm=1L \cdot h^m = 1
    12and hmhm=dh^m \cdot h^m = d. If the class of LL were a rational multiple
    13chmc\,h^m, then cd=1c\,d = 1 and LL=c2dL \cdot L = c^2 d would be an integer, since
    14intersection numbers of algebraic cycles are integers.
    15
    16This concept isolates the arithmetic step: for every integer d2d \ge 2 there is
    17no rational cc with cd=1c\,d = 1 and c2dc^2 d an integer. Hence [L][L] is not a
    18rational multiple of hmh^m for any d2d \ge 2, in every even dimension.
    19-/
    20
    21namespace Lax894236.LinearSubspaceClass
    22
    23/-- For `d ≥ 2` there is no rational `c` with `c d = 1` and `c² d` an integer. -/
    24axiom no_rational_multiple (d : ℤ) (hd : 2 ≤ d) :
    25 ¬ ∃ c : ℚ, c * (d : ℚ) = 1 ∧ ∃ n : ℤ, c ^ 2 * (d : ℚ) = (n : ℚ)
    26
    27end Lax894236.LinearSubspaceClass
    28
    Show Proof
    Builds on

    none

    Used by

    none

    From Mathlib

    Discussion

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

    Loading discussion…