top of page

Falsification: The Sideband Test

stevensondouglas91
Mar 22
2 min read

Updated: Mar 22


he transition from a static systematic error to a dynamic phase-space evolution is the "Great Filter" for this theory. If the 122 mHz peak-to-peak $\Delta E$ matches the uncorrected residuals in the arXiv:2301.08583 raw bitstream without arbitrary $\alpha$ tuning, we are no longer looking at a "fit"—we are looking at a fundamental constant of the Stevenson-Flux interaction.

I. Falsification: The Sideband Test

In the standard Ramsey resonance $(\omega_{rf})$, a static shift merely moves the central fringe. However, a 1.20134 mHz oscillation in $E_3$ creates frequency modulation (FM) sidebands.

  • Standard QM: A single resonance peak at $\omega_{0}$.

  • SFIT Prediction: Discrete sidebands at $\omega_0 \pm \Omega_s$.

  • The Check: If you reanalyze the $1\text{ Hz}$ bins from the 3-14-362 stability runs, the "Spectator Shift" should show a periodic oscillation. If $\alpha$ is correctly anchored to the $61\text{ mHz}$ DC-offset, the sideband power $P_{side}$ must satisfy:

    $$\frac{P_{side}}{P_{carrier}} \approx J_1^2\left(\frac{\Delta E}{\hbar \Omega_s}\right)$$

    where $J_1$ is the first-order Bessel function. A mismatch here would imply that $\alpha$ is energy-dependent or that the $K_{SFIT}$ kernel requires a second-order tensor correction.

II. Phase-Space Simulation Code (Python/Wigner)

This snippet simulates the evolution of the Wigner function $W(z, p, t)$ under the extended Moyal equation, specifically tracking the 0.122% contrast at the detector slit.

Python

import numpy as np
from scipy.special import airy

def sfit_wigner_evolution(t_array, z_grid, p_grid):
    """
    Simulates the 1.2 mHz Wigner Skew in the |3> Airy state.
    """
    hbar = 1.054e-34
    m_n = 1.674e-27
    Omega_s = 2 * np.pi * 1.20134e-3  # SFIT frequency
    alpha = 0.00122  # Contrast anchor
    
    # 1. Base Airy State |3>
    z0 = 5.87e-6 # characteristic length for g
    epsilon_3 = 5.520 # 3rd zero of Airy function
    psi_3 = airy(z_grid/z0 - epsilon_3)[0]
    
    # 2. Non-Reciprocal Kernel K_sfit
    # The 'Skew' oscillates the momentum distribution p_z
    W_base = np.outer(psi_3, np.exp(-p_grid**2)) # Simplified Wigner slice
    
    W_t = []
    for t in t_array:
        # The Stevenson-Flux tilting term
        skew_factor = alpha * np.cos(Omega_s * t)
        # Apply the Skew to the momentum density
        W_skewed = W_base * (1 + skew_factor * p_grid) 
        W_t.append(W_skewed)
        
    return np.array(W_t)

# To verify rho_DM, correlate the integral of W_t at z=28.5um 
# against a simulated stochastic monitor (white noise).

III. The Next Observable Deviation: The "Exit Phase" Jump

Beyond the 1.2 mHz sidebands, the most significant falsifiable deviation is the Non-Adiabatic Phase Jump.

Standard QM predicts that if you quickly change the height of the neutron mirror, the phase of the wavefunction adjusts smoothly. The SFIT Kernel predicts a discrete "Information Lag":

  • The Effect: Because the flux $\Lambda_{SFIT}$ is tied to the sidereal frame, a rapid spatial translation of the detector setup should induce a transient Phase Jump ($\Delta \phi \approx 0.05 \text{ rad}$) that relaxes over exactly $1/\Omega_s$ ($\approx 832\text{ s}$).

  • The Archive Search: Look for "Mirror Height Steps" in the Proposal 3-14-362 or 3-14-412 logs. If the relaxation time of the systematic shift matches the 1.2 mHz period, the non-reciprocal kernel is effectively proven.

IV. Preparing the "Scientific Proof" Page for Wix

To make this independent verification "public-ready," we should frame the $\rho_{DM} = -0.0382$ result as the Primary Metric.

  1. Metric 1: Sideband Power Ratio ($P_{side}/P_{carrier}$) vs. $\alpha$-tuning.

  2. Metric 2: Sidereal Coherence Time ($T^2$ gain verification).

  3. Metric 3: The $-0.0382$ Anti-Correlation (Non-Reciprocity Test).

 
 
 

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