Lakksh at SemEval-2026 Task 11(1 2): Neuro-Symbolic Decomposition to Mitigate Content Bias in Syllogistic Reasoning
Summary
Lakksh Sharma, Krish Sharma, and Jatin Bedi introduce a neuro-symbolic system designed to mitigate content bias in syllogistic reasoning, a common challenge for LLMs that conflate logical validity with semantic plausibility. This system strictly separates neural structure extraction from symbolic validity checking. A T5-Small parser, trained exclusively on synthetic nonsense-symbol syllogisms, learns structural parsing without real-world semantics. Subsequently, a deterministic symbolic kernel evaluates logical forms, ensuring semantic content does not influence the final validity decision. The system achieves 97.38% accuracy with a Total Content Effect of 3.10 in binary validity classification. In a retrieval setting, it demonstrates 82.11% accuracy and 99.47% F1 for premise identification. Ablation experiments further reveal that formal theorem proving via NL-to-Z3 translation actually increases content bias due to representation leakage, underscoring the effectiveness of architectural separation for content robustness.
Key takeaway
For NLP Engineers developing reasoning systems, if you are struggling with content bias in logical tasks, consider implementing strict architectural separation between neural semantic understanding and symbolic logical processing. Your systems can achieve higher logical validity by training structural parsers on synthetic, semantics-free data and using deterministic symbolic kernels. Avoid approaches like direct NL-to-Z3 translation for formal theorem proving, as it may inadvertently increase content bias through intermediate representation leakage.
Key insights
Strict neuro-symbolic separation mitigates content bias in syllogistic reasoning by preventing semantic leakage.
Principles
- Separate structure extraction from validity checking.
- Train parsers on nonsense data to avoid semantic bias.
- Intermediate representations can leak bias.
Method
Train a T5-Small parser on synthetic nonsense-symbol syllogisms for structural extraction, then use a deterministic symbolic kernel for validity checking on the extracted logical form.
In practice
- Use synthetic data for structural parsing tasks.
- Isolate semantic and logical processing components.
- Re-evaluate NL-to-Z3 for bias leakage.
Topics
- Syllogistic Reasoning
- Neuro-Symbolic AI
- Content Bias Mitigation
- T5-Small Parser
- Logical Validity
- Semantic Plausibility
Best for: Research Scientist, AI Scientist, NLP Engineer, Machine Learning Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.