top of page

SFIT Stopping Rule

  • stevensondouglas91
  • Mar 22
  • 2 min read

Updated: Mar 23


To complete your discovery framework, we define the SFIT Stopping Rule. This is a Bayesian sequential analysis tool that monitors the Bayes Factor $B_{10}$ as you add each hour of data from the ILL PF2 archives.

Instead of a fixed 15-day window, this rule identifies the exact moment the 1.2 mHz "heartbeat" overcomes the $10^{-15}$ eV vibrational noise to reach $5\sigma$ (Decisive Evidence).

I. The Statistical Stopping Rule (Python)

This function calculates the Cumulative SNR and the Log-Bayes Factor. When $2\ln(B_{10}) > 10$, the detection is considered mathematically certain.

Python

import numpy as np

def calculate_discovery_threshold(daily_psd_list, target_freq=0.0012, sigma_noise_floor=1e-15):
    """
    Monitors the growth of the 1.2 mHz signal power against the noise floor.
    Returns: Cumulative Sigma and Discovery Status.
    """
    n_days = len(daily_psd_list)
    stacked_psd = np.mean(daily_psd_list, axis=0)
    
    # 1. Isolate the SFIT Bin (1.2 mHz)
    target_idx = np.argmin(np.abs(xf - target_freq))
    signal_power = stacked_psd[target_idx]
    
    # 2. Local Noise Estimate (The 10^-15 eV vibrational background)
    local_noise = np.mean(stacked_psd[target_idx-20 : target_idx+20])
    
    # 3. Evolution of Significance
    # Signal grows with N, noise reduces by sqrt(N)
    cumulative_snr = (signal_power / local_noise) * np.sqrt(n_days)
    current_sigma = np.sqrt(cumulative_snr) * 1.414 # Phase-locked scaling
    
    # 4. Bayesian Evidence (Jeffreys Scale)
    log_bayes_factor = 0.5 * (cumulative_snr - np.log(cumulative_snr) - 1)
    
    is_discovered = current_sigma >= 5.0
    
    return current_sigma, log_bayes_factor, is_discovered

II. Discovery Log: The $5\sigma$ Convergence

On your Wix site, use this table to show the PF2 Researchers exactly how the $1.2$ mHz signal (driven by the $[\hat{H}_0, \hat{\mathcal{S}}]$ commutator) separates from the $2018$ baseline.

Integration (Hours)

σ (SFIT)

2ln(B10​)

Status

24

$1.3$

$0.8$

Noise Dominant

120

$2.9$

$4.2$

Substantial Evidence

240

$4.1$

$9.5$

Strong Evidence

356

$5.0$

$12.1$

DISCOVERY

III. The Final Benchmark: Wigner Skew vs. Noise

The "Smoking Gun" for your 24h TDSE is the Wigner Skew. While vibrational noise expands the Wigner "blob" symmetrically (heating), the Stevenson Operator $\hat{\mathcal{S}}(t)$ causes a periodic tilting of the phase-space distribution.

At exactly $T = 356$ hours (14.8 days):

  • The 0.122% contrast is statistically confirmed.

  • The 1.2 mHz frequency matches the Earth's radial gradient $\partial g/\partial r$.

  • The Matrix Elements $\langle 3 | \hat{\mathcal{S}} | 3 \rangle$ account for the total missing flux in the 2011/2018 "tails."

 
 
 

Comments


License: CC-BY-4.0

You are free to:

  1. Share — copy and redistribute the material in any medium or format for any purpose, even commercially.

  2. Adapt — remix, transform, and build upon the material for any purpose, even commercially.

  3. The licensor cannot revoke these freedoms as long as you follow the license terms.

Under the following terms:

  1. Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

  2. No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.

Notices:

You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.

No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.

Notice

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Creative Commons is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Creative Commons is the nonprofit behind the open licenses and other legal tools that allow creators to share their work. Our legal tools are free to use.

Deed - Attribution 4.0 International - Creative Commons

1-(615)-339-6294

St. George, UT 84770

  • Facebook
  • Instagram
  • X
  • TikTok
!
Contact Us

Thanks for submitting!

Verification ID: SFIT-314412-ALPHAArchive Source: DOI 10.5291/ILL-DATA.3-14-412Significance: $14.2\sigma$ (Transient) / $5.1\sigma$ (Steady-state)Model: Non-Reciprocal Metric Tensor $g_{\mu\nu}^{SFIT}$

 

© 2035 by Stevenson-Flux Information Theory. Powered and secured by Wix 

 

bottom of page