"매 symbol 은 discrete, manipulable token — meaning 의 abstract carrier". 매 Newell·Simon 의 Physical Symbol System Hypothesis 의 origin. 매 2026 의 modern usage: pure symbolic AI 의 retire, neuro-symbolic hybrid (Scallop, DeepProbLog, LLM+Lean) 의 mainstream.
매 핵심
매 Physical Symbol System Hypothesis (Newell & Simon 1976)
"A physical symbol system has the necessary and sufficient means for general intelligent action."
importscallopyctx=scallopy.ScallopContext()ctx.add_relation("digit",(int,float))# (digit, prob from NN)ctx.add_rule("sum(s) :- digit(a, _), digit(b, _), s == a + b")# NN provides probabilistic facts; Scallop reasons differentiablyctx.add_facts("digit",[(3,0.9),(5,0.85)])result=ctx.run().relation("sum")
6. Tool-using LLM (Wolfram-as-tool)
tools=[{"name":"wolfram_alpha","description":"Symbolic math via Wolfram Alpha","input_schema":{"type":"object","properties":{"query":{"type":"string"}},"required":["query"]}}]# Claude calls wolfram_alpha("integrate(x^2 sin(x), x)")# returns symbolic answer; Claude composes natural language explanation.
7. Symbolic regression (PySR)
frompysrimportPySRRegressormodel=PySRRegressor(niterations=40,binary_operators=["+","*","-","/"],unary_operators=["cos","exp","sin"],)model.fit(X,y)print(model.sympy())# human-readable formula
매 결정 기준
상황
Approach
Exact math
SymPy / Mathematica
Logical constraints
Z3 / OR-Tools
Theorem proving
Lean 4 + LLM proposer
Structured KB QA
KG + SPARQL + LLM rephrase
Pattern from data
symbolic regression (PySR)
기본값: 매 symbolic-only 의 X. LLM proposer + symbolic verifier hybrid.
언제: symbolic system 의 natural-language interface, proof step proposal, KG query generation.
언제 X: symbolic verification 그 자체 (LLM 의 hallucinate — Lean/Z3 의 사용).
❌ 안티패턴
Pure symbolic AI 의 modern attempt: 매 brittleness — perception 의 connectionist 의 필요.
Hand-crafted ontology 의 over-invest: 매 maintenance hell. KG 의 LLM-bootstrap.
LLM 의 symbolic answer 의 trust: 매 verify 의 fail. 매 Lean/Z3/SymPy 의 ground.
Embedding-only retrieval: 매 logical relationship 의 lose — KG triples 의 hybrid.
🧪 검증 / 중복
Verified (Newell & Simon Turing lecture 1976, Marcus 2020 critique, AlphaProof Nature 2024, Scallop ICLR 2023).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — symbolic AI + modern neuro-symbolic hybrid