Quantum-inspired trace-augmented evidence selection methodology for improving reasoning accuracy in specialized domains. Uses quantum probability principles to weight evidence coherence across chain-of-thought traces, reducing majority-vote errors in evidence-intensive reasoning tasks. Use when improving LLM reasoning on evidence-heavy domains, designing trace-augmented aggregation, or applying quantum probability to evidence selection.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill quantum-inspired-evidence-reasoning --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quantum Inspired Evidence Reasoning?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-quantum-inspired-evidence-reasoning-2feaea1a)More formats (shields.io, HTML) on the badges page.
---
name: quantum-inspired-evidence-reasoning
description: "Quantum-inspired trace-augmented evidence selection methodology for improving reasoning accuracy in specialized domains. Uses quantum probability principles to weight evidence coherence across chain-of-thought traces, reducing majority-vote errors in evidence-intensive reasoning tasks. Use when improving LLM reasoning on evidence-heavy domains, designing trace-augmented aggregation, or applying quantum probability to evidence selection."
metadata:
arxiv_id: "2606.06941"
published: "2026-06-05"
authors: "Laura Wynter, Nirvik Sahoo, Paul Griffin"
---
# Quantum-Inspired Evidence Reasoning
Methodology that applies quantum probability principles to evidence selection and reasoning over structured hypothesis spaces, addressing the brittleness of LLMs on evidence-intensive domains.
## Core Problem
LLMs excel at general reasoning but fail on specialized, evidence-intensive domains (e.g., legal reasoning) because:
1. Majority vote over CoT traces returns the most popular answer regardless of evidence quality
2. Subtle distinctions between pieces of evidence are lost in aggregation
3. Inconsistent use of supporting evidence across traces
## Quantum-Inspired Approach
### Quantum Probability for Evidence Weighting
Instead of classical majority voting, use quantum probability amplitudes:
- Each evidence piece is a quantum state |e_i⟩
- CoT traces are superpositions: |trace⟩ = Σ α_i |e_i⟩
- Evidence coherence measured via interference patterns
- Destructive interference cancels weak/inconsistent evidence
- Constructive interference amplifies coherent evidence sets
### Trace-Augmented Selection
1. **Sample multiple CoT traces** from the LLM for the same query
2. **Extract evidence sets** from each trace
3. **Compute evidence coherence** using quantum-inspired probability amplitudes
4. **Select answer** based on evidence-weighted probability, not frequency
### Structured Hypothesis Spaces
- Define hypotheses as vectors in a Hilbert space
- Evidence supports/contradicts hypotheses via projection operators
- Sequential evidence application: P(H|E₁,E₂) = ||P_{E₂} P_{E₁} |H⟩||²
- Non-commutativity captures order-dependence of evidence evaluation
## Implementation Steps
### Step 1: Trace Collection
```
traces = []
for _ in range(N):
trace = llm.generate(query, temperature=0.7)
evidence = extract_evidence(trace)
hypothesis = extract_conclusion(trace)
traces.append({"evidence": evidence, "hypothesis": hypothesis})
```
### Step 2: Evidence Vectorization
- Encode evidence pieces as vectors (embeddings or feature representations)
- Construct evidence coherence matrix: C_ij = ⟨e_i | e_j⟩
- Diagonal = self-consistency, off-diagonal = mutual support
### Step 3: Quantum-Inspired Aggregation
- Compute amplitude for each hypothesis: α_H = Σ trace_weight × coherence_score
- Probability: P(H) = |α_H|²
- Select H* = argmax P(H)
### Step 4: Validation
- Compare against majority vote baseline
- Measure accuracy improvement on evidence-intensive tasks
- Analyze which evidence patterns benefit most from quantum weighting
## When to Use
- **Legal reasoning**: where subtle evidence distinctions matter
- **Medical diagnosis**: where conflicting evidence requires careful weighting
- **Financial analysis**: where evidence quality varies significantly
- **Scientific literature review**: where multiple studies may conflict
## Pitfalls
### Over-Engineering Simple Tasks
For straightforward queries, majority vote is sufficient. **Fix**: Use quantum weighting only when evidence coherence analysis shows significant variance across traces.
### Embedding Quality Dependency
The approach depends on good evidence vectorization. **Fix**: Use domain-specific embeddings (legal-BERT, BioBERT) rather than general-purpose ones.
### Computational Overhead
Computing coherence matrices for large evidence sets is O(n²). **Fix**: Use approximate methods (random projection, locality-sensitive hashing) for large evidence sets.
## Activation Keywords
- quantum-inspired evidence
- trace-augmented reasoning
- evidence selection quantum
- quantum probability reasoning
- chain of thought aggregation
- evidence coherence
- quantum reasoning
- 量子启发证据推理
- 证据选择推理
## Related Skills
- `tool-integrated-reasoning-recipe` — Tool-use reasoning integration
- `self-verification` — Multi-round verification for reasoning tasks
- `quantum-inspired-optimization` — Quantum-inspired classical algorithms
## References
- arXiv:2606.06941 — "Quantum-Inspired Trace-Augmented Evidence Selection for Reasoning over Structured Hypothesis Spaces" (Wynter, Sahoo, Griffin, 2026)
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!