Symbolic AI (GOFAI)

Symbolic AI is the approach to artificial intelligence that represents knowledge as explicit symbols, such as words, facts, and rules, and treats intelligent behavior as the manipulation of those symbols. It is sometimes called GOFAI, for “Good Old-Fashioned AI,” to distinguish it from the data-driven, neural-network methods that dominate today. In symbolic AI, a programmer or expert encodes what the system knows, and the system reasons by applying logical rules and searching through possible combinations of symbols to reach a conclusion.

The clearest statement of this philosophy is the physical symbol system hypothesis, set out by Allen Newell and Herbert Simon in their 1975 ACM Turing Award lecture, “Computer Science as Empirical Inquiry: Symbols and Search,” published in 1976. They proposed that “a physical symbol system has the necessary and sufficient means for general intelligent action,” meaning that the right arrangement of symbols and rules for manipulating them is, in principle, all that intelligence requires. They paired this with the idea that solving problems amounts to searching through symbol structures for a solution.

This view powered most of AI’s first three decades, from the Logic Theorist and SHRDLU to the expert systems and the Japanese Fifth Generation project. Its strength is transparency: because knowledge is written out explicitly, you can inspect and explain the system’s reasoning. Its weakness is brittleness and the labor of hand-coding knowledge, which is why symbolic systems struggled with the messy, ambiguous real world and were eventually overtaken by learning-based methods.

Why business readers should care: most of today’s excitement is about neural networks and large language models, but symbolic AI is making a quiet comeback in “neuro-symbolic” systems that combine learned pattern recognition with explicit rules and logic. Understanding the symbolic tradition explains both where AI came from and why explainability and rules still matter in high-stakes applications.