You know how a spreadsheet formula works? Cell C1 says =A1+B1. Cell D1 says =C12. The final answer in D1 depends on a tree of sub-computations, and crucially, it doesn't matter whether you compute A1+B1 first and then double it, or whether you inline the whole thing — you get the same number. That's not a nice-to-have. That's the entire reason spreadsheets are trustworthy. Now imagine your spreadsheet sometimes returned different answers depending on which cells you evaluated first. That's the current state of LLM multi-step reasoning — and this paper proposes the mathematical framework that would let you detect exactly when and where the inconsistency enters. The committed claim: operads, algebraic structures from topology that model many-inputs-one-output compositions, are the correct mathematical home for question decomposition in LLMs. The authors define a specific operad Q where operations are question templates (a question with slots for sub-answers) and composition is substitution — plugging a sub-answer into a slot. QA models become algebras over Q, meaning they're structure-preserving maps from question trees to answer spaces. This isn't metaphor. It's a formal isomorphism that lets you derive invariants. The key invariant is operadic consistency: given a decomposition tree, you can partially collapse it — answer some sub-questions and substitute the results back in — creating multiple paths to the same final answer. A perfectly consistent model gives identical answers regardless of which partial collapse you evaluate. Real LLMs don't. The gap between paths is operadic consistency, and the companion paper (Bottman, Liu, and Richardson, 2026) reports it strongly correlates with accuracy across twelve LLMs and four multi-hop QA datasets, outperforming standard temperature-based self-consistency baselines. The ladder question is interesting because this paper's real competitor isn't another formalism — it's the informal practice of chain-of-thought prompting and self-consistency (Wang et al., 2023). Temperature-based self-consistency samples multiple reasoning paths at high temperature and takes the majority vote. Operadic consistency doesn't sample randomly; it systematically varies the decomposition structure. The companion paper shows this structural variation is a stronger signal than random sampling, which makes sense — you're probing the model's compositional coherence, not its output distribution. Architecturally, this is pure category theory applied to NLP — specifically, the operad framework from algebraic topology (May, 1972; Boardman-Vogt, 1973) transplanted into the question-answering setting. No new neural architecture, no training procedure, no gradient updates. The method sits on top of any QA model as a diagnostic layer. That's both its strength (model-agnostic, zero compute overhead beyond the extra inference calls for partial collapses) and its limitation (it tells you where reasoning breaks but doesn't fix it). Integrity is split: the theoretical contribution in this paper is mathematical — definitions, propositions, proofs. The empirical validation is outsourced to the companion paper, which tests across twelve LLMs and four multi-hop QA datasets. We can't evaluate the empirical rigor from this paper alone, but the scope of the companion evaluation (12 models × 4 datasets) is substantial if the methodology holds. The risk is circularity: if operadic consistency correlates with accuracy, it might just be measuring something simpler — like whether the model can answer easier sub-questions, which trivially predicts whether it can answer the hard composed question. The honest read on what's missing: the authors didn't run the obvious interventional experiment — using operadic consistency scores to actually improve model outputs during inference (e.g., rejecting inconsistent decomposition paths, resampling when consistency drops below a threshold). They reference this as a future direction. My read: they're saving it for the next paper (option c). The theoretical framework is clean and publishable on its own; the interventional study is a separate contribution. But that's exactly the experiment that would move this from diagnostic to tool.