> For the complete documentation index, see [llms.txt](https://neurosymbolicai.gitbook.io/neuro-symbolic-ai-in-practice/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://neurosymbolicai.gitbook.io/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1.md).

# Chapter 1: Why Neuro-Symbolic AI?

> *"LLMs are pattern recognizers, not reasoners. The difference matters when failure has consequences."*

***

This chapter makes the case for neuro-symbolic AI by diagnosing the limitations of pure neural approaches and pure symbolic approaches, then introducing the architectural frameworks that combine their strengths.

We examine empirical evidence — PlanBench, TravelPlanner, ARC, SCAN/COGS — showing that LLMs systematically fail as autonomous reasoners. We then introduce the LLM-Modulo framework as the principled design response, and address the "extended thinking" complication from o1/o3-class models.

**By the end of this chapter you will be able to:**

* Explain the five architectural reasons why LLMs fail as autonomous planners (§1.1)
* Describe the neural/symbolic trade-off using the three-tier KIL framework (§1.2)
* Apply the LLM-Modulo pattern to system design — naming the LLM roles and the critic roles (§1.3)
* Precisely compare neural and symbolic systems across nine properties (§1.4)
* Explain why inference-time compute scaling (o1/o3) does not replace symbolic verification (§1.5)

***

## Sections

* [1.1 LLM Planning Limitations](/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1/1-1-llm-limitations.md)
* [1.2 The Neurosymbolic Agenda](/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1/1-2-neurosymbolic-agenda.md)
* [1.3 The LLM-Modulo Framework](/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1/1-3-llm-modulo.md)
* [1.4 Neural vs. Symbolic — A Fair Comparison](/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1/1-4-neural-vs-symbolic.md)
* [1.5 The Extended Thinking Complication](/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1/1-5-extended-thinking.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://neurosymbolicai.gitbook.io/neuro-symbolic-ai-in-practice/part-i-motivation/chapter-1.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
