1. Abstract

We present a client-side computational framework comprising 10 physics engines that test hypotheses about electromagnetic resonance in microtubule structures, based on findings reported by Bandyopadhyay et al. (2020, 2022). The framework implements 4th-order Runge-Kutta integration for coupled oscillator dynamics, Monte Carlo sampling for statistical validation, Berry phase accumulation for coherent amplification analysis, Euler-Maruyama stochastic differential equations for noise-driven resonance, and energy budget calculations for biophysical feasibility.

Of seven hypotheses tested, two are plausible (fractal coherent amplification, stochastic resonance), two are consistent but tautological (boundary dominance, temporal cascade), one is inconclusive (pitch angle optimality), one is unvalidated (Schumann alignment, p=0.179), and one is falsified (chirality creating triplets). Meta-analysis reveals that simpler ordered structures match or exceed the fractal pattern's coherent amplification, and that active MHz oscillation exceeds a neuron's energy budget by 16x, constraining any valid mechanism to passive thermal resonance.

This is an exploratory computational tool, not peer-reviewed research. Its value lies in sharpening the questions that laboratory experiments must answer.

2. Introduction

Microtubules are hollow cylindrical polymers of tubulin protein, ~25 nm in outer diameter, that form the structural scaffolding of eukaryotic cells. In neurons, they are abundant: approximately 100,000 microtubules per neuron, each composed of ~1,625 tubulin dimers per 10 μm length, arranged in 13 protofilaments with a characteristic 3-start helical lattice.

In 2020, Bandyopadhyay et al. reported measuring fractal electromagnetic resonance in single brain-extracted microtubule nanowires, observing a "triplet of triplet" pattern of resonance peaks that repeats self-similarly across four frequency decades: Hz (brain-wave scale), kHz (filament scale), MHz (microtubule scale), and GHz (tubulin scale) [1]. In 2022, the same group reported that cytoskeletal filaments fire approximately 250 μs before the membrane ionic spike, with roughly 4 filament bursts gating each ionic spike, challenging the century-old Hodgkin-Huxley model of neural signaling [2].

These claims are extraordinary. If confirmed, they would fundamentally alter our understanding of neural information processing. If wrong, they represent a measurement artifact or misinterpretation. In either case, they deserve rigorous computational scrutiny.

This whitepaper documents a simulation framework designed to do precisely that: model the claimed phenomena numerically, test whether the patterns are mathematically plausible and internally consistent, identify where the model merely confirms its own assumptions, and determine what experimental measurements would actually settle the question.

3. Background

3.1 Microtubule Structure

Microtubules are composed of α/β-tubulin heterodimers (~8 nm each) arranged in a hollow cylinder. Key structural parameters:

ParameterValueSource
Outer diameter~25 nmStructural biology
Inner diameter~15 nmStructural biology
Protofilaments13Structural biology
Helical lattice3-start helix, ~12° pitchStructural biology
Dimers per 10 μm~1,625Calculated
MTs per neuron~105Neuroscience literature

The 13-protofilament arrangement with a 3-start helical lattice gives microtubules a characteristic chirality (handedness) that is conserved across species. This chirality has been proposed as relevant to phenomena like the Chirality-Induced Spin Selectivity (CISS) effect [5].

3.2 Bandyopadhyay's Findings

The key claims from the source material include:

3.3 Relevant Theoretical Frameworks

Berry Phase: When a quantum (or classical wave) system is transported around a closed loop in parameter space, it acquires a geometric phase Φ = π(1 − cos α) per circuit, where α is the solid angle subtended [3]. In helical structures, this produces cumulative phase shifts that can lead to constructive or destructive interference.

Stochastic Resonance: A counterintuitive phenomenon in nonlinear bistable systems where an intermediate level of noise maximizes the signal-to-noise ratio. First described by Benzi et al. (1981) and extensively reviewed by Gammaitoni et al. (1998) [4]. SR has been observed in biological systems including mechanoreceptors, neural networks, and ion channels.

CISS Effect: Chiral molecules and structures can selectively filter electron spin, producing spin-polarized currents with amplification factors of 50–1000x compared to achiral systems [5]. This provides a potential physical mechanism for the large amplification factors claimed.

4. Methodology

4.1 Architecture

The simulator is a pure client-side web application (~194 KB total) with zero external dependencies. It consists of:

All computation runs in the browser's main thread with periodic setTimeout yields to prevent UI blocking. Results are stored in a shared PhysicsResults object.

4.2 Engine 1: Coupled Oscillator (RK4)

Purpose: Model the filament-membrane coupling that produces the temporal cascade.

Method: 4th-order Runge-Kutta integration of coupled ODEs with asymmetric coupling:

dx_fast/dt = v_fast dv_fast/dt = -ω_fast² x_fast - γ_fast ω_fast v_fast + k_back x_slow + F_drive dx_slow/dt = v_slow dv_slow/dt = -ω_slow² x_slow - γ_slow ω_slow v_slow + k_fwd x_fast

Parameters:

Output: Time series of both oscillators, phase lead measurement, energy transfer rate.

4.3 Engine 2: Stochastic Resonance

Purpose: Test whether noise enhances the signal in the fractal resonator.

Method: Euler-Maruyama integration of a bistable potential with 36 resonant modes:

dx_i/dt = x_i - x_i³ + A cos(ω_i t) + D η(t)

where ωi are the 36 triplet-of-triplet frequencies, D is noise amplitude, η is Gaussian white noise.

Parameters:

Output: SNR vs. noise curve for each mode, optimal noise level, peak SNR ratio.

4.4 Engine 3: Berry Phase Coherence (Monte Carlo)

Purpose: Test whether the fractal structure produces N-fold vs. √N amplification.

Method: Complex vector summation of phase contributions:

Coherent amplitude: A_c = |Σ exp(i φ_k)| for k = 1..N where φ_k = n_k · π/4 (Berry phase per mode) Random amplitude: A_r = ⟨|Σ exp(i θ_k)|⟩ where θ_k ~ Uniform[0, 2π] averaged over 10,000 trials

Parameters:

Output: Coherent amplitude, random mean ± std, amplification ratio.

4.5 Engine 4: Chiral Resonance Comparator

Purpose: Test whether chirality produces the triplet pattern.

Method: Cylindrical standing wave modes with and without helical pitch:

Achiral: f_mn = (c/2π) √((mπ/L)² + (n/R)²) Chiral: f_mn = (c/2π) √((mπ/L)² + ((n + m tan α)/R)²)

Parameters:

Output: Resonance spectra for both geometries, triplet clustering metric.

4.6 Engine 5: Pitch Angle Sweep

Purpose: Test whether the microtubule's actual pitch angle is optimal.

Method: Berry phase resonance condition and coupling efficiency vs. angle:

Berry phase per turn: Φ(α) = π(1 - cos α) Resonance condition: N · Φ(α) = 2πk (constructive) Coupling efficiency: η(α) = |sin(2α)| · exp(-α/α_c)

Parameters:

Output: Coupling efficiency curve, peak angle, comparison to actual MT angle.

4.7 Engine 6: Scale Extension

Purpose: Test whether the fractal pattern predicts known frequencies at sub-Hz and THz scales.

Method: Extrapolate physicsGenerateTripletFrequencies() to 0.001 Hz and 1 THz base frequencies, then compare predictions against Schumann harmonics (7.83, 14.3, 20.8, 27.3, 33.8 Hz) and the 5–6 THz thermal driver.

Output: Match scores (fraction of known frequencies within 5% of predictions), predicted frequency lists.

4.8 Engine 7: Monte Carlo Null (Schumann)

Purpose: Statistical validation of H7 — is the Schumann alignment significant?

Method: Generate 10,000 random fractal patterns (randomized triplet ratios and sub-triplet spacings), count Schumann matches for each, compute p-value.

Parameters:

Output: p-value, observed vs. expected match distribution.

4.9 Engine 8: Sensitivity Analyzer

Purpose: Test robustness of all hypothesis verdicts under parameter perturbation.

Method: For each hypothesis (H1, H2, H4, H5, H6), perturb key parameters by ±30% in 5 steps, re-run the test, count how often the verdict is preserved.

Output: Per-hypothesis robustness score (0–100%), fragile parameters identified, overall robustness. H3 and H7 are excluded (H3 is tautological, H7 has its own Monte Carlo).

4.10 Engine 9: Alternative Structure Comparator

Purpose: Test whether the fractal pattern is uniquely good at coherent amplification.

Method: Compute coherent amplification for 7 phase arrangements over N = 36 modes:

StructurePhase Rule
Fractal triplet (ours)Berry phase with 4-scale nesting
Regular latticeφk = k · π/(N+1) (half-circle sweep)
Golden spiralφk = k · 2π/φ² (golden angle)
Harmonic cavityφk = k² · π/N² (quadratic)
Helical latticeMT geometry without fractal nesting
Random baselineUniform random (10,000 trials)
Perfect alignmentφk = 0 for all k (upper bound)

Output: Ranked table of coherent amplitudes, showing where fractal pattern sits relative to alternatives.

4.11 Engine 10: Energy Budget

Purpose: Test whether microtubule resonance is biophysically feasible.

Method: Calculate power requirements for active oscillation and compare to neuron energy budget:

ConstantValueSource
kT at 37°C4.28 × 10-21 JThermodynamics
ATP hydrolysis energy5.4 × 10-20 JBiochemistry
Tubulin conformational energy1 × 10-20 JBiophysics estimate
Neuron power consumption~1 nWNeuroscience
Neuron ATP rate4.7 × 109 /sNeuroscience
Cytoplasm viscosity3 × 10-3 Pa·s~3x water

Output: Power per MT, total MT power budget, fraction of neuron budget, thermal noise sufficiency assessment.

4.12 Limitations

Important limitations of this computational approach:
1. All engines model simplified physics — real microtubules have complex molecular dynamics, solvent effects, and quantum decoherence timescales (~10-13 s per Tegmark 2000) that are not modeled.
2. Several hypotheses (H3, H4) are structurally tautological — the model tests its own assumptions, not independent predictions.
3. Parameters like coupling strength, damping ratio, and stochastic resonance noise amplitude are tunable, not empirically constrained.
4. The triplet-of-triplet pattern (ratios 2:10:30 with sub-ratios 0.7:1.0:1.4) is hardcoded from Bandyopadhyay's reported measurements, not derived from first principles.
5. No thermal decoherence modeling is included. This is a critical omission for any quantum-adjacent claims.

5. Results

5.1 H1: Fractal Coherent Amplification — Plausible

The Berry phase model produces coherent amplification of approximately 36x for the 36 fractal modes, compared to a random phase ensemble mean of approximately 6x (√36). The amplification ratio exceeds 2.0, confirming that the specific phase arrangement is non-random.

However, Engine 9 (Alternative Structure Comparator) reveals that this is not unique to the fractal pattern. A regular lattice with half-circle phase sweep achieves approximately 22.9, compared to the fractal's approximately 17.7. The fractal arrangement is good — but not the best available ordered structure.

Key insight: Order amplifies. The fractal structure amplifies more than random or non-nested helical arrangements, but less than a simple regular lattice. The specific triplet-of-triplet pattern is not uniquely optimal for coherent amplification.

5.2 H2: Chirality Creates Triplets — Falsified

Comparing cylindrical standing wave modes with helical pitch (α = 12°) versus without (α = 0°), the helical geometry shifts mode frequencies but does not cause them to cluster into groups of three. The triplet gap ratio is below the threshold for triplet clustering.

This is the most significant negative result: whatever produces the triplet-of-triplet pattern, simple chirality is not the mechanism. The origin of the triplet structure remains an open question.

5.3 H3: Boundary Dominates Bulk — Consistent

Amplification scales sub-linearly with tube length, consistent with a boundary (surface) effect rather than a bulk (volume) effect.

Caveat: This is a tautological test. The boundary behavior was built into the model's assumptions. The result confirms the model is internally consistent, not that boundaries dominate in real microtubules.

5.4 H4: Filament-First Temporal Ordering — Consistent

In the coupled oscillator model, the fast oscillator (1 MHz filament) phase-leads the slow oscillator (1 kHz membrane), and membrane-first configurations produce lower coherent output.

Caveat: This is expected from coupled oscillator theory. A fast oscillator driving a slow one will always lead. The model confirms its own mathematical structure, not Bandyopadhyay's biological measurement.

5.5 H5: Pitch Angle Optimality — Inconclusive

The coupling efficiency function η(α) = |sin(2α)| · exp(−α/αc) shows a peak near 12° when αc = 25°. However, the peak position is sensitive to the choice of αc, which is a free parameter. Sensitivity analysis gives only 55% robustness under ±30% perturbation — the weakest of all hypotheses tested.

5.6 H6: Thermal Noise as Fuel — Plausible

The stochastic resonance test shows a clear inverted-U shaped SNR curve: signal-to-noise ratio increases with noise amplitude to an optimal value, then decreases. The peak SNR significantly exceeds the noiseless baseline, confirming stochastic resonance is present in the model.

This is the most physically grounded finding. Stochastic resonance is a well-established phenomenon, experimentally verified in biological systems, and does not require exotic physics. If microtubules operate in a nonlinear regime, noise-driven enhancement is plausible.

Caveat: The noise amplitude at which SR peaks is tunable (set to 0.3 signal amplitude in a double-well potential). These parameters are not empirically constrained for microtubule systems.

5.7 H7: Scale Invariance Predicts Schumann — Unvalidated

Extrapolating the triplet pattern to sub-Hz frequencies produces 4 out of 5 matches with Schumann resonance harmonics (7.83, 14.3, 20.8, 27.3, 33.8 Hz) within a 5% log-scale threshold.

However, Engine 7's Monte Carlo null comparison generates 10,000 random fractal patterns and finds that 17.9% of random patterns match 4 or more Schumann harmonics. The p-value of 0.179 is not statistically significant at any conventional threshold. The random mean is 2.56 ± 1.01 matches, and our observed 4 matches is within the distribution.

Summary of Results

HypothesisVerdictKey MetricHonest Assessment
H1: Fractal AmplificationPlausible36x coherent vs 6x randomReal but not unique (regular lattice = 22.9)
H2: Chirality → TripletsFalsifiedNo triplet clusteringChirality shifts modes, doesn't cluster them
H3: Boundary DominanceConsistentSub-linear scalingTautological — tests own assumption
H4: Temporal CascadeConsistentFast leads slowTautological — coupled oscillator math
H5: Pitch AngleInconclusivePeak near 12°Depends on free parameter, 55% robust
H6: Noise as FuelPlausibleSR peak presentReal physics, but params unconstrained
H7: Schumann AlignmentUnvalidatedp = 0.179Not significant; 17.9% of random matches

6. Meta-Analysis

Three additional engines interrogate the simulator itself — testing whether the results are robust, whether the fractal structure is special, and whether the mechanism is biophysically feasible.

6.1 Sensitivity Analysis (Engine 8)

Each hypothesis was re-tested with key parameters perturbed by ±30% in 5 steps. A hypothesis is "robust" if the verdict is preserved across perturbations.

HypothesisRobustnessAssessment
H1: Fractal Amplification~97%Highly robust
H2: Chirality → Triplets~90%Robust (stays falsified)
H4: Temporal Cascade~100%Very robust
H5: Pitch Angle~55%Fragile — sensitive to αc
H6: Noise as Fuel~100%Very robust
Overall~86.3%

H5 (Pitch Angle Optimality) is the weakest point. Its verdict flips depending on the critical angle parameter. All other hypotheses maintain their verdicts even with substantial parameter variation.

6.2 Alternative Structure Comparison (Engine 9)

If the fractal pattern is special, it should outperform other ordered structures at coherent amplification. It does not:

StructureCoherent AmplitudeRank
Perfect alignment (upper bound)36.01
Regular lattice~22.92
Fractal triplet (ours)~17.73
Golden spiral~14.24
Harmonic cavity~11.85
Random baseline~6.06
Helical lattice (no nesting)~5.47
Key finding: The fractal pattern ranks 3rd out of 7. It significantly outperforms random (~6x) and non-nested helical (~5.4), confirming that the fractal nesting adds real coherence. But a simple regular lattice (~22.9) beats it. The fractal structure is not uniquely optimal — any ordered phase arrangement produces coherent amplification.

6.3 Energy Budget (Engine 10)

Active oscillation of tubulin dimers at MHz frequencies requires energy. The question: can a neuron afford it?

MetricValueAssessment
Power per MT (1% active dimers, 1 MHz)~1.6 × 10-10 W
Total MT power (105 MTs)~1.6 × 10-5 W
Neuron power budget~1 × 10-9 W
Fraction of budget~16,250%Implausible
Thermal noise (kT/2 at 37°C)2.14 × 10-21 JSufficient for passive
Hard constraint: Active MHz oscillation of even 1% of tubulin dimers requires roughly 16x the total energy budget of a neuron. This rules out actively-driven oscillation and constrains any valid mechanism to passive thermal resonance, where ambient thermal noise (kT/2 at 37°C) provides the driving energy without metabolic cost.

7. Discussion

What the Model Actually Shows

The strongest positive finding is the presence of stochastic resonance (H6): noise-driven signal enhancement is real physics, well-established experimentally, and present in our model under the assumed parameters. If microtubules operate in a nonlinear regime, this mechanism could plausibly enhance electromagnetic sensitivity without requiring exotic physics or metabolic energy.

Coherent amplification (H1) is mathematically real but not uniquely associated with the fractal structure. The key insight from Engine 9 is that order itself — any ordered phase arrangement — produces amplification. The fractal pattern is one of many structures that would work.

The Tautology Problem

Two of the seven hypotheses (H3, H4) are structurally tautological: the model confirms its own mathematical assumptions. This is not a flaw in the code — it's a fundamental limitation of testing a model against itself. These results demonstrate internal consistency, not independent evidence for the biological claims.

The Falsification

H2's falsification (chirality does not create triplets) is the most structurally significant result. It means the origin of the triplet-of-triplet pattern remains unexplained. If the experimental measurements are correct, the mechanism is not simple helical geometry. This is an open question that neither this model nor Bandyopadhyay's papers resolve.

The Energy Constraint

Engine 10's energy budget analysis provides the hardest quantitative constraint: any mechanism involving active tubulin oscillation at MHz frequencies is energetically implausible. This does not rule out microtubule resonance entirely, but it constrains the mechanism to passive/thermal rather than active/metabolic. Stochastic resonance (H6) naturally fits this constraint, as it is driven by thermal noise.

What This Is Not

This is not experimental evidence. No amount of computational modeling can substitute for direct electromagnetic spectroscopy of microtubules. The value of this framework is in sharpening the predictions that experiments must test and identifying which claims are mathematically plausible, which are trivially self-confirming, and which fail basic physical constraints.

8. Open Questions for Experimental Investigation

The following questions could be addressed by laboratory experiments:

9. References

  1. Bandyopadhyay, A. et al. "Fractal, Scale Free Electromagnetic Resonance of a Single Brain Extracted Microtubule Nanowire, a Single Tubulin Protein, and a Single Neuron." Fractal and Fractional, 4(2), 11, 2020.
  2. Bandyopadhyay, A. "A century-old picture of the nerve impulse is wrong: Filaments fire before the membrane, all filaments of all types fire together." Communicative & Integrative Biology, 15(1), 2022.
  3. Berry, M.V. "Quantal Phase Factors Accompanying Adiabatic Changes." Proceedings of the Royal Society of London A, 392(1802), 45–57, 1984.
  4. Gammaitoni, L., Hänggi, P., Jung, P. & Marchesoni, F. "Stochastic Resonance." Reviews of Modern Physics, 70(1), 223–287, 1998.
  5. Naaman, R. & Waldeck, D.H. "Chiral-Induced Spin Selectivity Effect." Journal of Physical Chemistry Letters, 3(16), 2178–2187, 2012.
  6. Tegmark, M. "Importance of quantum decoherence in brain processes." Physical Review E, 61(4), 4194–4206, 2000.
  7. Fröhlich, H. "Long-range coherence and energy storage in biological systems." International Journal of Quantum Chemistry, 2(5), 641–649, 1968.