Chapter 7 – Logical Agents (Vocabulary Flashcards)

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/41

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering the key terms and definitions from Chapter 7 – Logical Agents, including knowledge-based reasoning, propositional logic, inference techniques, and SAT solving.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

42 Terms

1
New cards

Knowledge-based agent

An intelligent system that selects actions by reasoning over an internal knowledge base rather than by fixed rules or reflexes.

2
New cards

Knowledge base (KB)

A collection of sentences expressed in a formal language that represents what an agent knows about the world.

3
New cards

TELL operation

The procedure for adding new sentences (axioms or percepts) to a knowledge base.

4
New cards

ASK operation

The procedure for querying a knowledge base to determine whether a sentence is entailed.

5
New cards

Inference engine

The algorithmic component of a knowledge-based agent that derives new sentences from the KB.

6
New cards

Knowledge level

A description of an agent in terms of what it knows rather than how that knowledge is implemented.

7
New cards

Wumpus World

A grid-based test environment containing a Wumpus, pits, breezes, stenches, and gold, used to illustrate knowledge-based reasoning.

8
New cards

Entailment (⊨)

The property that a sentence α is true in every model in which a knowledge base KB is true; written KB ⊨ α.

9
New cards

Model

A formally structured world (assignment of truth values to proposition symbols) against which sentence truth is evaluated.

10
New cards

Model checking

Proving KB ⊨ α by enumerating all models of KB and verifying that α holds in each.

11
New cards

Soundness

An inference procedure is sound if every sentence it derives from KB is actually entailed by KB.

12
New cards

Completeness

An inference procedure is complete if it can derive every sentence that is entailed by the knowledge base.

13
New cards

Propositional (Boolean) logic

A formal language whose atomic elements are proposition symbols connected by logical connectives such as ¬, ∧, ∨, ⇒, ⇔.

14
New cards

Syntax (of logic)

The set of rules that defines which symbol combinations form well-formed sentences.

15
New cards

Semantics (of logic)

The rules that assign meanings (truth conditions) to well-formed sentences.

16
New cards

Truth table

A table that lists the truth value of a logical connective or sentence for every possible assignment of its symbols.

17
New cards

Validity (tautology)

A sentence that is true in all possible models (e.g., A ∨ ¬A).

18
New cards

Satisfiability

The property of a sentence being true in at least one model.

19
New cards

Contradiction (unsatisfiable)

A sentence that is false in all models (e.g., A ∧ ¬A).

20
New cards

Deduction theorem

States that KB ⊨ α iff the implication (KB ⇒ α) is valid.

21
New cards

Logical equivalence (≡)

Two sentences are logically equivalent if each entails the other; they are true in exactly the same models.

22
New cards

Conjunctive Normal Form (CNF)

A conjunction of disjunctions of literals; every propositional sentence can be converted to an equivalent CNF.

23
New cards

Resolution rule

A single sound and complete inference rule for CNF: from (A ∨ X) and (¬A ∨ Y) derive (X ∨ Y).

24
New cards

Proof by contradiction (refutation)

Technique that shows KB ⊨ α by proving KB ∧ ¬α is unsatisfiable.

25
New cards

Horn clause

A disjunction of literals containing at most one positive literal; can be written as an implication (A ∧ B ⇒ C).

26
New cards

Forward chaining

A data-driven inference method that repeatedly applies Modus Ponens to derive new facts until the query is reached.

27
New cards

Backward chaining

A goal-driven inference method that works backward from the query, proving subgoals until known facts are reached.

28
New cards

Modus Ponens

Valid inference rule: from (α ⇒ β) and α, conclude β.

29
New cards

Unit resolution

Special case of resolution where one premise is a single literal; often used in forward chaining.

30
New cards

Pure symbol

A proposition symbol that appears with only one polarity (always positive or always negated) in all clauses; useful in DPLL.

31
New cards

Unit clause

A clause with exactly one unassigned literal, forcing that literal’s value during DPLL search.

32
New cards

SAT problem

The task of determining whether a propositional sentence is satisfiable (has at least one model).

33
New cards

DPLL algorithm

The Davis–Putnam–Logemann–Loveland backtracking algorithm for deciding SAT using pure-symbol and unit-clause heuristics.

34
New cards

Component analysis

DPLL optimization that splits a clause set into independent subproblems for faster solving.

35
New cards

Degree heuristic

Variable-ordering strategy that selects the symbol appearing in the most remaining clauses.

36
New cards

Intelligent backtracking

DPLL enhancement that backtracks directly to the decision responsible for a conflict, skipping irrelevant levels.

37
New cards

Random restart

SAT-solving technique that abandons a search path after little progress and starts with a fresh random ordering.

38
New cards

Effective Propositional Model Checking

A family of SAT-based algorithms that perform general propositional inference more efficiently than exhaustive enumeration.

39
New cards

Inference

The process of deriving new sentences from existing ones using sound rules of logic.

40
New cards

Implementation level

The lower level that describes how an agent’s knowledge and reasoning are actually represented in hardware or software.

41
New cards

Stench (Wumpus percept)

Sensor signal indicating the agent is in a square adjacent to the Wumpus.

42
New cards

Breeze (Wumpus percept)

Sensor signal indicating the agent is in a square adjacent to a pit.