Methodology for computing fundamental quantum-metabolic limits on noninvasive brain imaging (MEG/EEG) information capacity. Derives technology-independent bounds from Planck constant, neural metabolism, and geometry. Use when analyzing limits of magnetoencephalography, quantum sensors for neuroscience, brain imaging spatio-temporal tradeoffs, or metabolic information capacity bounds. Based on arXiv 2511.06401.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill quantum-metabolic-neuroimaging-limit --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quantum Metabolic Neuroimaging Limit?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-quantum-metabolic-neuroimaging-limit-ai-collection)More formats (shields.io, HTML) on the badges page.
---
name: quantum-metabolic-neuroimaging-limit
description: Methodology for computing fundamental quantum-metabolic limits on noninvasive brain imaging (MEG/EEG) information capacity. Derives technology-independent bounds from Planck constant, neural metabolism, and geometry. Use when analyzing limits of magnetoencephalography, quantum sensors for neuroscience, brain imaging spatio-temporal tradeoffs, or metabolic information capacity bounds. Based on arXiv 2511.06401.
---
# Quantum-Metabolic Neuroimaging Limit
## Overview
Computes fundamental, technology-independent bounds on the information capacity of noninvasive brain imaging (magnetoencephalography, MEG) by combining:
1. Quantum energy resolution limits of magnetic sensors (SQUIDs, atomic magnetometers)
2. Brain metabolic power constraints
3. Geometric suppression of higher multipole components
**Key result**: Maximum information rate ≈ 2.2 Mbit/s for the human brain, determined only by geometry, neural metabolism, and Planck's constant.
**Paper**: "Metabolic quantum limit to the information capacity of magnetoencephalography" (arXiv: 2511.06401v2)
## Core Theory
### Quantum Energy Resolution Limit
The minimum detectable energy change for any magnetic sensor is bounded by:
$$\Delta E_{\text{min}} \approx \hbar \cdot \Delta f$$
where $\Delta f$ is the measurement bandwidth and $\hbar$ is the reduced Planck constant.
### Metabolic Power Constraint
The brain's total metabolic power $P_{\text{met}}$ sets an upper bound on the neural signals that can be generated and detected. For the human brain:
- $P_{\text{met}} \approx 20$ W (total)
- Neural activity fraction $\approx 1-5$ W
- Maximum information rate $R_{\text{max}} \approx 2.2$ Mbit/s
### Spatio-Temporal Tradeoff
Higher multipole components of the measurable magnetic field are geometrically suppressed:
- Monopole: zero (no magnetic monopoles)
- Dipole: dominant, detectable
- Quadrupole and above: exponentially suppressed below quantum noise floor
**Key insight**: Temporal bandwidth and spatial bandwidth compete — increasing temporal resolution reduces spatial resolution and vice versa.
## Computation Steps
### Step 1: Information Capacity Bound
Given:
- Brain radius $R \approx 8$ cm
- Neural metabolic power $P \approx P_{\text{neural}}$
- Quantum limit $\hbar$
Compute maximum information rate:
$$R_{\text{max}} = \frac{P}{\hbar \cdot f_{\text{min}}} \cdot \log_2(\text{SNR}_{\text{max}})$$
Where $f_{\text{min}}$ is the minimum resolvable frequency and $\text{SNR}_{\text{max}}$ is the maximum achievable signal-to-noise ratio set by metabolic constraints.
### Step 2: Angular Bandwidth Limit
The measurable magnetic field has finite angular bandwidth:
- Maximum spherical harmonic degree $\ell_{\text{max}}$ depends on sensor distance and quantum noise
- Higher $\ell$ modes fall below quantum-limited noise floor
- This limits the spatial complexity of detectable neural current patterns
### Step 3: Spatio-Temporal Bandwidth Product
The total information capacity is constrained by:
$$C \leq (\text{temporal bandwidth}) \times (\text{spatial bandwidth}) \times \log_2(\text{SNR})$$
Since quantum noise variance grows linearly with bandwidth, increasing temporal bandwidth forces spatial bandwidth reduction.
## Practical Applications
### When to Use This Skill
1. **MEG system design**: Evaluate whether proposed sensor configurations approach fundamental limits
2. **Quantum sensor evaluation**: Compare SQUID vs. atomic magnetometer performance against quantum bounds
3. **fMRI/MEG resolution planning**: Understand fundamental tradeoffs before investing in hardware
4. **Neuroscience theory**: Frame hypotheses about neural coding efficiency relative to fundamental limits
5. **Alzheimer's early detection**: Preclinical diagnosis may be limited by these fundamental bounds
### Example Calculations
```python
import numpy as np
hbar = 1.054571817e-34 # J·s
P_neural = 5.0 # W, neural metabolic power
f_min = 0.1 # Hz, minimum frequency
# Simplified information capacity
# R_max ~ P / (hbar * f_min * ln(2)) in bits/s
# This is an order-of-magnitude estimate
def estimate_info_capacity(P, f_min, snr_db=60):
"""Estimate maximum information rate for MEG."""
hbar = 1.054571817e-34
snr_linear = 10 ** (snr_db / 10)
# Each quantum of energy hbar*f carries log2(SNR) bits
R = P / (hbar * f_min) * np.log2(snr_linear)
return R / 1e6 # Mbit/s
print(f"Max info rate: {estimate_info_capacity(P_neural, f_min):.1f} Mbit/s")
```
## Key Implications
1. **Technology-independent**: These bounds hold regardless of sensor technology improvements
2. **Geometric suppression**: Spatial resolution is fundamentally limited by how far sensors are from the brain
3. **Metabolic bottleneck**: The brain's own energy consumption is the primary limiting factor
4. **Spatio-temporal competition**: You cannot simultaneously maximize temporal and spatial resolution
5. **2.2 Mbit/s ceiling**: This is the absolute upper bound for human brain MEG information rate
## Trigger Keywords
magnetoencephalography, MEG, quantum limit, information capacity, brain imaging, SQUID, atomic magnetometer, metabolic power, neural metabolism, spatio-temporal tradeoff, multipole expansion, quantum noise, Planck constant, brain bandwidth, noninvasive imaging
**Activation**: 量子脑成像, 代谢量子极限, 脑磁图, 量子传感器, 信息容量
## References
- arXiv: 2511.06401v2 — "Metabolic quantum limit to the information capacity of magnetoencephalography"
- Authors: E. Gkoudinakis, S. Li, I. K. Kominis
- Categories: physics.bio-ph, physics.comp-ph, quant-ph
- PDF: https://arxiv.org/pdf/2511.06401v2
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!