Do the physical structures of the brain strictly dictate its functional activity?
Or do they operate as partially independent systems?
To characterize large-scale principles of cortical organization, we can think of the human brain as a complex, bustling city.
PC1 Gene Expression, Myelin Ratio, Cortical Thickness, Allometric Scaling.
Just like a city has physical infrastructure, the brain has "roads".
These layers represent the physical anatomy, morphological cables, and structural hierarchies that permit signals to travel.
5-HT1a Receptors, Glucose Metabolism, Functional Gradient, Intersubject Variability.
A road can be open, but cars cannot move until the light turns green. This "traffic" represents neurochemical and functional signaling—the dynamic flow of information controlled by metabolic states and neurotransmitter distributions.
Current neuroscience often studies these physical and functional components in isolation, overlooking their critical interactions. Our project bridges this gap by transforming diverse volumetric and surface brain maps onto a unified cortical grid (fsLR 32k), creating a robust framework to test whether the brain functions as highly integrated multimodal units, or partially segregated structural and chemical systems.
Comparing brain images directly often yields false connections. This is due to Spatial Autocorrelation—the phenomenon where neighboring brain regions are inherently more similar to each other than distant regions, violating standard statistical independence assumptions and inflating false positives.
To combat this, we utilize the Alexander-Bloch Spin Test. Instead of destroying the data's inherent spatial structure by randomly shuffling vertices, we project the maps onto a sphere and rotate them relative to one another.
This preserves the intrinsic spatial topology of the original data while randomizing the alignment between the two maps. When combined with Max-T permutation correction, this guarantees that observed correlations represent true biological coupling rather than random geometric coincidence.
Given the high dimensionality of our data (~32,000 vertices per map), standard scatter plots become unreadable. We implemented hexbin density scatter plots to visualize the concentration of data points across map pairs.
Because interactions in the brain are rarely perfectly linear, we applied rank transformations to the data. This linearization of monotonic relationships allowed us to evaluate spatial associations rigorously using the Spearman rank correlation coefficient (\(\rho\)), converting curved trends into linear diagonal associations.
To characterize the dominant low-dimensional structure underlying the multimodal covariance between brain maps, we performed Principal Component Analysis (PCA) on the multimodal correlation matrix.
Because the \(8\times8\) Spearman correlation matrix \(R\) is symmetric and positive semi-definite by construction, PCA was implemented directly via eigendecomposition:
\[ R = V \Lambda V^T \]
Here, \(\Lambda\) contains the eigenvalues (sorted in descending order to calculate variance explained), and \(V\) contains the corresponding orthonormal eigenvectors. Component loadings, which quantify the contribution of each original brain map to each principal component, were computed as:
\[ L = V \Lambda^{1/2} \]
This mathematical property allows us to precisely isolate the orthogonal axes capturing the maximum shared spatial variance across structural and functional modalities.
Finally, we applied agglomerative hierarchical clustering to systematically test our "Segregation Hypothesis". Because clustering algorithms operate on distances rather than similarities, we converted the Spearman correlation matrix \(R\) into a dissimilarity matrix \(D\):
\[ D = 1 - R \]
We set the diagonal to zero (\(D_{ii} = 0\)) to enforce zero self-distance. This transformation maps highly positively correlated map pairs to small distances. We then used average linkage (UPGMA), where the distance between two clusters \(A\) and \(B\) is defined as the mean pairwise distance between all elements across clusters:
\[ d(A,B) = \frac{1}{|A||B|} \sum_{i \in A} \sum_{j \in B} D_{ij} \]
We cut the resulting dendrogram into two distinct clusters (\(k=2\)) to measure whether maps couple more strongly within their biological domains (e.g., structure-to-structure) than between them.
Below is the comprehensive correlation matrix for our 8 neuroimaging maps. Values range from -1 (Dark Blue, strong negative coupling) to +1 (Dark Red, strong positive coupling). Hover over any cell to investigate the precise Spearman ρ correlation between that specific brain map pair.
Figure 1: Interactive 8x8 Spearman Correlation Matrix. Darker colors indicate stronger biological signals that survived Max-T correction thresholds.
Our pairwise density scatter plots revealed that structural and chemical modalities are not uniformly linked across the brain. They frequently exhibit complex "hockey stick" or sigmoidal curves. When plotting local coupling scores onto the cortical surface, we observe that structural and functional layers are tightly coupled in primary sensory and motor regions, but highly uncoupled (divergent) in the association cortex.
Below are three key examples illustrating the strength of within-group tethering and between-group decoupling:
Ranked Pairwise Scatter Plot
Localized Coupling Brain Map
Ranked Pairwise Scatter Plot
Localized Coupling Brain Map
Ranked Pairwise Scatter Plot
Localized Coupling Brain Map
Our PCA revealed a highly compressed low-dimensional structure. PC1 explains 50.10% of the variance and acts as a global "coupling axis" capturing shared variation across all maps. PC2 explains 18.08% of the variance and functions strictly as a "segregation axis"—pulling structural maps (like cortical thickness) to one side, and functional/chemical maps (like 5-HT1a) to the other. Together, just two dimensions explain ~70% of the brain's macroscopic covariance.
Figure 3: Interactive PCA visualizations. Use the toggle bar to switch between the Loadings Heatmap and Variance Scree Plot.
Hierarchical clustering perfectly partitioned the maps into two biological families: an "Inward-oriented" Structural cluster and an "Outward-oriented" Functional cluster. The mean correlation strength within these groups (r ≈ 0.497 and 0.378) was significantly higher than the correlation between the groups (r = -0.370), providing stark quantitative evidence for structural-functional decoupling.
Figure 4: Interactive Hierarchical Dendrogram. Hover over nodes and leaves to view cluster assignments and biological coupling notes.
The scatter plot below visualizes the exact PC1 and PC2 loadings for each brain map. Select any two points to trace their vectors from the origin and automatically calculate the angle between them. This angle's cosine serves as a low-dimensional approximation of their true spatial correlation.
Figure 5: Interactive Vector Analysis. Points colored by subgroup clustering assignments.
Our analysis answers our primary hypothesis: The roads do not strictly dictate the traffic.
We identified strong empirical evidence supporting the Tethering Hypothesis. While sensory regions of the brain are evolutionarily "tethered" (where structure strictly guides function), the higher-order association cortices are untethered. This decoupling allows for abstract reasoning, complex decision-making, and advanced social cognition without being rigidly constrained by local anatomy.
Why does this matter?
By establishing this normative baseline using rigorous spatial null testing, we have created a statistical framework that can be applied to clinical neuroscience. Understanding this baseline allows researchers to pinpoint exactly how and where structural-functional coupling breaks down in neurodegenerative diseases like Alzheimer's or psychiatric disorders like Schizophrenia.