The Euler characteristic of a smooth hypersurface as a binomial tail

Lax894236.EulerCharacteristic · concepts/Lax894236/EulerCharacteristic.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 hypersurface XdnPn+1X_d^n \subset \mathbb{P}^{n+1} of degree dd and dimension nn, the topological Euler characteristic is the polynomial in dd

    χ(Xdn)=(1d)n+21d+(n+2),\chi(X_d^n) = \frac{(1-d)^{n+2} - 1}{d} + (n+2),

    a consequence of the Hirzebruch–Riemann–Roch computation of the Chern classes of a hypersurface. That geometric input is taken from the literature; this concept is about the polynomial itself. Multiplying by dd removes the division: chiPolynd=(1d)(n+2)1+(n+2)dchiPoly n d = (1 - d)^(n+2) - 1 + (n+2) d.

    The statement is that this polynomial equals the tail of the binomial expansion of (1d)n+2(1-d)^{n+2} from the quadratic term on, k=0n(n+2k+2)(d)k+2\sum_{k=0}^{n} \binom{n+2}{k+2} (-d)^{k+2}: the constant and linear terms of the binomial cancel against 1-1 and (n+2)d(n+2)d, which is why χ\chi is a genuine polynomial with no constant or linear term. The familiar cases are d34d2+6dd^3 - 4d^2 + 6d for surfaces and 10d10d2+5d3d410d - 10d^2 + 5d^3 - d^4 for threefolds.

    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.Algebra.BigOperators.Group.Finset.Basic
    2import Mathlib.Data.Nat.Choose.Basic
    3import Mathlib.Data.Rat.Defs
    4
    5/-!
    6---
    7title: The Euler characteristic of a smooth hypersurface as a binomial tail
    8type: theorem
    9---
    10For a smooth hypersurface XdnPn+1X_d^n \subset \mathbb{P}^{n+1} of degree dd and
    11dimension nn, the topological Euler characteristic is the polynomial in dd
    12
    13χ(Xdn)=(1d)n+21d+(n+2),\chi(X_d^n) = \frac{(1-d)^{n+2} - 1}{d} + (n+2),
    14
    15a consequence of the Hirzebruch–Riemann–Roch computation of the Chern classes of a
    16hypersurface. That geometric input is taken from the literature; this concept is
    17about the polynomial itself. Multiplying by dd removes the division:
    18`chiPoly n d = (1 - d)^(n+2) - 1 + (n+2) d`.
    19
    20The statement is that this polynomial equals the tail of the binomial expansion
    21of (1d)n+2(1-d)^{n+2} from the quadratic term on,
    22k=0n(n+2k+2)(d)k+2\sum_{k=0}^{n} \binom{n+2}{k+2} (-d)^{k+2}: the constant and linear terms of
    23the binomial cancel against 1-1 and (n+2)d(n+2)d, which is why χ\chi is a genuine
    24polynomial with no constant or linear term. The familiar cases are
    25d34d2+6dd^3 - 4d^2 + 6d for surfaces and 10d10d2+5d3d410d - 10d^2 + 5d^3 - d^4 for threefolds.
    26-/
    27
    28namespace Lax894236.EulerCharacteristic
    29
    30open Finset
    31
    32/-- `d` times the Euler characteristic of a smooth degree-`d` hypersurface of
    33dimension `n`: the polynomial `(1 - d)^(n+2) - 1 + (n+2) d`. -/
    34def chiPoly (n : ℕ) (d : ℚ) : ℚ := (1 - d) ^ (n + 2) - 1 + ((n : ℚ) + 2) * d
    35
    36/-- The polynomial equals the binomial tail
    37`∑_{k=0}^{n} C(n+2, k+2) (-d)^(k+2)`. -/
    38axiom chiPoly_eq_binomial_tail (n : ℕ) (d : ℚ) :
    39 chiPoly n d = ∑ k ∈ range (n + 1), ((n + 2).choose (k + 2) : ℚ) * (-d) ^ (k + 2)
    40
    41end Lax894236.EulerCharacteristic
    42
    Show Proof

    Discussion

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

    Loading discussion…