"매 reasoning about reality, knowledge, mind, value". Philosophy 의 main branches (epistemology, metaphysics, ethics, mind, logic) — 매 modern AI 의 deeply intertwined: 매 knowing claim (epistemology) → ML evaluation, 매 mind claim (consciousness) → AGI/sentience debate, 매 value claim (ethics) → AI alignment / safety.
매 핵심
매 main branches
Epistemology: knowledge — 매 what can we know, justified true belief.
Metaphysics: existence — 매 what exists, causation, time, identity.
Ethics: value — 매 right/wrong, deontology vs consequentialism vs virtue.
Logic: valid inference — 매 deductive, inductive, abductive.
Philosophy of mind: consciousness — 매 hard problem (Chalmers).
Philosophy of science: 매 falsification (Popper), paradigms (Kuhn).
Philosophy of language: meaning, reference, speech acts.
매 epistemology (AI 와 직결)
Justified True Belief — Gettier 1963 의 challenge.
Bayesian epistemology — 매 belief 의 probability degree.
Reliabilism — 매 process 의 reliability 가 중요.
매 ML evaluation: 매 model 의 "knowledge" claim 의 epistemic status.
매 ethics (AI alignment)
Deontology: rules (Kant). 매 categorical imperative.
매 AI safety: 매 RLHF = consequentialist; constitutional AI = deontological hybrid.
매 mind & consciousness
Hard problem (Chalmers 1995): 매 why subjective experience exists.
Functionalism: 매 mind = function, substrate-independent → AGI sentience plausible.
Chinese Room (Searle 1980): 매 syntax ≠ semantics.
Integrated Information Theory (Tononi): 매 consciousness = Φ.
매 2026 frontier: 매 LLM consciousness debate (Anthropic Welfare team, Google DeepMind sentience research).
매 응용
AI ethics frameworks (alignment, fairness).
AGI sentience / moral patienthood debate.
Epistemic status of model outputs (hallucination as false belief).
Decision theory (CDT, EDT, FDT) for AI agents.
💻 패턴
Bayesian belief update
defbayes_update(prior,likelihood_h,likelihood_not_h):"""P(H|E) = P(E|H)P(H) / [P(E|H)P(H) + P(E|~H)P(~H)]"""p_e=likelihood_h*prior+likelihood_not_h*(1-prior)returnlikelihood_h*prior/p_e# Belief in hypothesis after evidenceposterior=bayes_update(prior=0.3,likelihood_h=0.9,likelihood_not_h=0.1)
Constitutional AI (deontological rules)
constitution=["Refuse harmful requests.","Do not deceive.","Respect autonomy.",]defcritique(response,constitution):# LLM critiques own response against rulesreturnllm.complete(f"Critique: {response}\nRules: {constitution}")
Trolley problem decision theory
# Utilitarian (consequentialist)defutilitarian(action_outcomes):returnmax(action_outcomes,key=lambdaa:sum(a["lives_saved"]))# Deontological — hard rule against killingdefdeontological(actions):return[aforainactionsifnota["actively_kills"]]
언제: 매 AI ethics framing, alignment design, sentience debate, epistemic claims.
언제 X: 매 narrow technical implementation (philosophy 의 abstraction 만 enough).
❌ 안티패턴
Single-framework dogma: 매 only utilitarianism → trolley monsters; only deontology → unable to weigh harm.
Conflating AI behavior with consciousness: 매 LLM 의 "I feel" output ≠ proof of feeling.
Solving the hard problem casually: 매 functionalism 의 plausible but not proven.
Ignoring philosophy in alignment: 매 RLHF 의 implicit consequentialism unexamined.
Naive realism in ML eval: 매 benchmark score = "true intelligence" (epistemic naive).
🧪 검증 / 중복
Verified (Stanford Encyclopedia of Philosophy, Russell & Norvig "AIMA" Ch. 27 Ethics).
신뢰도 A-.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — branches, AI applications, decision patterns