Skip to content

GIFT Core: Certified mathematical identities from E8×E8 gauge theory on G2 manifolds. Dual-verified (Lean 4 + Coq).

License

Notifications You must be signed in to change notification settings

gift-framework/core

Repository files navigation

GIFT Core

Formal Verification Python Tests PyPI

Formally verified mathematical relations from the GIFT framework. All theorems proven in Lean 4 and Coq.

Structure

Lean/GIFT/
├── Core.lean              # Constants (dim_E8, b2, b3, H*, ...)
├── Certificate.lean       # Master theorem (185+ relations)
├── Foundations/           # E8 roots, G2 cross product, Joyce
├── Algebraic/             # Octonions, Betti numbers
├── Observables/           # PMNS, CKM, quark masses, cosmology
└── Relations/             # Physical predictions

COQ/                       # Coq mirror proofs

gift_core/                 # Python package (giftpy)

Quick Start

pip install giftpy
from gift_core import *

print(SIN2_THETA_W)   # Fraction(3, 13)
print(GAMMA_GIFT)     # Fraction(511, 884)
print(TAU)            # Fraction(3472, 891)

Building Proofs

# Lean 4
cd Lean && lake build

# Coq
cd COQ && make

Documentation

For extended observables, publications, and detailed analysis:

gift-framework/GIFT


Changelog | MIT License

GIFT Core v3.2.13