Experiments / V2.74
V2.74
Cosmological Prediction COMPLETE

V2.74 - Area-Law Coefficient Convergence to C -> infinity

V2.74: Area-Law Coefficient Convergence to C -> infinity

Goal

Extrapolate the area-law coefficient alpha to the scheme-independent C -> infinity limit for scalar, Dirac, and vector species, removing the ~18% cutoff-convention ambiguity identified in V2.73.

Method

For each species, compute alpha at multiple global cutoff values C = l_max/n_max. Fit the convergence model alpha(C) = alpha_inf + A/C^p to extrapolate.

  • Scalar: N=400, C = [5, 8, 10, 13, 15, 20, 30, 50]
  • Dirac: N=200, C = [5, 10, 15, 20, 30]
  • Vector: N=400, C = [5, 10, 15, 20, 30]
  • n_values: range(15, 61, 3) -> 16 points per fit
  • 5-param fit: S = alpha4pin^2 + betan + delta*ln(n) + gamma + eps/n

Results

Scalar alpha(C) convergence

CalphaR^2
50.011600.99999976
80.017470.99999993
100.019260.99999996
130.020750.99999998
150.021340.99999999
200.022181.00000000
300.022851.00000000
500.023241.00000000

Extrapolation: alpha_scalar_inf = 0.02376 +/- 0.00008, p = 1.45 +/- 0.03

Vector alpha(C) convergence

CalphaR^2
50.023200.99999976
100.038530.99999996
150.042670.99999999
200.044361.00000000
300.045701.00000000

Extrapolation: alpha_vector_inf = 0.04764 +/- 0.00018, p = 1.44 +/- 0.03

Vector/scalar ratio

alpha_vector_inf / alpha_scalar_inf = 2.005

This matches the heat kernel prediction of exactly 2.0 to three significant figures.

Dirac alpha(C) — DOES NOT CONVERGE

CalphaR^2
5-0.013670.99999996
100.088850.99999995
150.170880.99999996
200.237930.99999996
300.344320.99999996

The Dirac alpha grows nearly linearly with C, showing no sign of convergence. The nonlinear fit hits the lower bound (p=0.1) with huge uncertainty (alpha_inf = 2.1 +/- 8.0). This is almost certainly due to fermion doubling on the naive lattice (wilson_r=0): the doublers contribute additional area-law entropy that grows with the cutoff.

Note: At C=10, alpha_Dirac/alpha_scalar = 0.089/0.019 = 4.7, consistent with V2.72’s finding of 4.6. But this ratio grows with C (15.0 at C=30), invalidating the Dirac extrapolation.

Corrected SM Prediction

Since the Dirac alpha doesn’t converge on our lattice, we use the heat kernel prediction for the Dirac/scalar ratio (4.0) combined with the well-determined scalar extrapolation:

  • alpha_scalar_inf = 0.02376 (measured)
  • alpha_Dirac_inf = 4 x 0.02376 = 0.09504 (heat kernel)
  • alpha_Weyl = alpha_Dirac/2 = 0.04752
  • alpha_vector_inf = 0.04764 (measured)

alpha_SM = 4(0.02376) + 45(0.04752) + 12(0.04764) = 0.0950 + 2.138 + 0.572 = 2.806

With delta_SM = -11.06 (corrected from code bug that used -9.69):

R_SM = |delta_SM| / (12 x alpha_SM) = 11.06 / 33.67 = 0.329

This is a factor of 3.0 from unity (vs. 2.7 with C=10 values).

Lambda_SM / Lambda_obs = |delta_SM| / (4 x alpha_SM x L_H^2 x Lambda_obs) = 1.15

Bug Found

The original code used delta_Weyl = -11/360 instead of -11/180. This is a factor-of-2 error: the correct value is delta_Weyl = -4a_Weyl = -4 x 11/720 = -11/180. The code has been corrected. The analytical delta values used in the SM sum are:

  • delta_scalar = -1/90 = -0.01111
  • delta_Weyl = -11/180 = -0.06111
  • delta_vector = -31/45 = -0.68889

Key Findings

  1. Scalar and vector alpha converge cleanly to C -> infinity with power law p ~ 1.45
  2. Vector/scalar ratio = 2.005 — matches heat kernel exactly
  3. Dirac alpha does NOT converge due to fermion doubling (wilson_r=0)
  4. Using heat kernel for Dirac and extrapolated scalar/vector: R_SM = 0.33, Lambda/Lambda_obs = 1.15
  5. The C -> infinity extrapolation changes alpha_scalar from 0.019 (C=10) to 0.024, a 25% increase that slightly worsens R_SM from 0.36 to 0.33

Runtime

153 seconds total.