discOrder_I0star_general
ProvedFTheoryK3Tate.discOrder_I0star_generalalgebraic-geometryelliptic-curveselliptic-surfacesf-theorymathematical-physics
The full type row. If , , and the reduced discriminant (where are the leading local Taylor coefficients of at , i.e. the coefficients of in and in ), then the discriminant satisfies . This covers all three branches; the nonvanishing reduced discriminant is the distinct-roots criterion separating from the series. No characteristic hypothesis is required.
Preamble
import Definitions.Def_FTheoryK3TateCore open Polynomial
Formal statement
namespace FTheoryK3Tate
variable {k : Type*} [Field k]
/-- The full type **I₀\*** row (all branches). At a point with `ord f ≥ 2`, `ord g ≥ 3`, and
nonzero reduced discriminant `4 c₂³ + 27 d₃² ≠ 0` — where `c₂ = (taylor t₀ f).coeff 2` and
`d₃ = (taylor t₀ g).coeff 3` are the leading local coefficients — the discriminant vanishes to
order exactly `6`. This covers all three I₀* cases (`ord f = 2, ord g = 3`; `ord f = 2, ord g > 3`;
`ord f > 2, ord g = 3`); the `≠ 0` condition is the distinct-roots criterion for the cubic
`x³ + c₂ x + d₃`, which is exactly what separates I₀* from the potentially multiplicative
`Iₙ*` series. No characteristic hypothesis is needed: the order-6 coefficient of `Δ` is
literally `4 c₂³ + 27 d₃²`. -/
theorem discOrder_I0star_general (f g : k[X]) (t₀ : k)
(hf : (X - C t₀) ^ 2 ∣ f) (hg : (X - C t₀) ^ 3 ∣ g)
(hred : 4 * ((taylor t₀ f).coeff 2) ^ 3 + 27 * ((taylor t₀ g).coeff 3) ^ 2 ≠ 0) :
(Δ f g).rootMultiplicity t₀ = 6 := by
sorry
end FTheoryK3Tate
Source
Kodaira/Tate classification of singular fibres: J. Tate (LNM 476, 1975); M. Schuett, T. Shioda, Elliptic Surfaces, arXiv:0907.0298; F-theory dictionary: T. Weigand, TASI Lectures on F-theory, arXiv:1806.01854.
Human review
Confirmed by the mission captain (proposal self-audit).