Lattice fitting engine
Project description
LatticeFit
Deterministic engine for discovering discrete multiplicative structure in positive real data.
Given measurements xâ‚, xâ‚‚, …, xâ‚™, LatticeFit tests whether they cluster near a geometric lattice:
xᵢ ≈ A · r^(kᵢ/d), kᵢ ∈ Z
and quantifies whether the alignment is statistically non-accidental.
Installation
pip install latticefit # core only
pip install "latticefit[plots]" # with matplotlib
Quick start
import latticefit
import numpy as np
# Standard Model fermion masses (GeV)
masses = [5.11e-4, 0.1057, 1.777, 0.00216, 1.275, 172.76,
0.00467, 0.0934, 4.18]
names = ["e", "mu", "tau", "u", "c", "t", "d", "s", "b"]
result = latticefit.fit(masses, anchor=5.11e-4,
base=latticefit.PHI, denom=4, names=names)
print(result.summary())
# Statistical validation
null = latticefit.log_uniform_null(result, n_trials=10_000)
print(null.summary())
# Plot
latticefit.plots.plot_fit(result, outfile="fit.png")
Command-line
latticefit masses.csv --anchor 5.11e-4 --base phi --denom 4 --null 10000 --plot fit.png
latticefit data.csv --auto
Lucas Mode
Based on the Lucas-geodesic bridge theorem (Gentry 2026), the golden ratio base φ is theoretically derived for data from arithmetic hyperbolic 3-manifolds:
A geodesic of length ℓ satisfies ℓ = k·log φ if and only if the holonomy trace magnitude |tr(γ)| = L_k = φ^k + φ^{-k} (exact).
Use --lucas to fix the base to φ and get Lucas number diagnostics:
latticefit data.csv --lucas --anchor 5.11e-4
Output includes:
- RMS residual and p-value against log-uniform null
- Fraction of data at integer Lucas number positions (L_0=2, L_2=3, L_4=7, L_5=11, L_7=29…)
- Prime Lucas hits: data points at prime Lucas positions — the prime dictionary {2, 3, 7, 11, 29} of the PMNS covering tower
Python API:
from latticefit.lucas import fit_lucas, lucas
result = fit_lucas(masses, anchor=5.11e-4)
print(result.summary())
# L_7 = phi^7 + phi^-7 = 29.034 (CKM norm-squared)
print(lucas(7))
Applications
- Particle physics mass spectra
- Financial return distributions
- Biological scaling laws
- Engineering failure-rate hierarchies
- Signal amplitude spectra
- Any dataset spanning multiple orders of magnitude
Patentable method
The bounded integer scan + structure-preserving null test combination
is a novel software method. See PATENT_NOTES.md for provisional
patent guidance.
Citation
If you use LatticeFit in research, please cite:
M. L. Gentry, "Geometric Unification of Flavor: Masses, Mixing, and CP from the Golden Ratio Lattice," submitted (2026).
License
MIT
Patent pending. US Provisional Application No. 64/013,306 (filed March 22, 2026).
Validity Criteria
Before interpreting a LatticeFit result as significant, verify:
-
Minimum range: Data should span at least 3 orders of magnitude (log10 range >= 3). Datasets spanning < 1 order of magnitude will show spurious lattice structure regardless of base, because the null distribution becomes non-uniform at narrow ranges.
-
Binned data: Check that data is not discretized into fixed bins (e.g. patent activity classifications, assay concentration series). Use len(unique_values) / len(values) > 0.5 as a rough screen.
-
Physics-motivated null: Where a theoretical prediction exists (e.g. Bethe-Weizsacker for nuclear BE, Gutenberg-Richter for earthquakes), test residuals from that prediction rather than raw values.
-
Effect size: z-score alone is misleading at large n. Report both z and the fractional RMS reduction: (null_RMS - obs_RMS) / null_RMS. Values below 5% are marginal regardless of p-value.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file latticefit-0.3.0.tar.gz.
File metadata
- Download URL: latticefit-0.3.0.tar.gz
- Upload date:
- Size: 49.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bfbe8f0a2d09a764c26c04b7db8522e525c916dfdd25e8b4087fcc138af25ed
|
|
| MD5 |
84b05cfd66e426347c00179d879b1c10
|
|
| BLAKE2b-256 |
08fb4ded6bef4c0274b59535947c17fdf97f70929b0c909c3957994b7ab35a80
|
File details
Details for the file latticefit-0.3.0-py3-none-any.whl.
File metadata
- Download URL: latticefit-0.3.0-py3-none-any.whl
- Upload date:
- Size: 65.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d53ac174707a91493de5bb235a29e3f3f5ce93db1d7befa07e6136ba9a1083
|
|
| MD5 |
a8d9fece05c504fce79915b79b849105
|
|
| BLAKE2b-256 |
131fafa201b7f2b98c55a74822474943bd7329427e975b885f68b582c1097b00
|