Introduction to Propositional and First-Order Logic

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/99

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

100 Terms

1
New cards

Propositional Logic

Simplest logic form using true or false statements.

2
New cards

Proposition

Declarative statement that is either true or false.

3
New cards

Tautology

Proposition formula that is always true.

4
New cards

Contradiction

Proposition formula that is always false.

5
New cards

Paradox

Proposition formula with both true and false values.

6
New cards

Atomic Proposition

Simple proposition consisting of a single symbol.

7
New cards

Compound Proposition

Combines atomic propositions using logical connectives.

8
New cards

Logical Connectives

Operators that connect propositions in logic.

9
New cards

First-Order Logic

Extension of propositional logic for knowledge representation.

10
New cards

Predicate Logic

Another name for first-order logic.

11
New cards

Syntax of FOL

Rules defining valid expressions in first-order logic.

12
New cards

Atomic Sentence

Basic sentence formed from a predicate and terms.

13
New cards

Complex Sentence

Combines atomic sentences using logical connectives.

14
New cards

Universal Quantifier

Indicates truth for all instances of a variable.

15
New cards

Existential Quantifier

Indicates truth for at least one instance.

16
New cards

Quantifiers

Specify the number of instances in logic.

17
New cards

Syntax of Propositional Logic

Defines allowable sentences for knowledge representation.

18
New cards

Logical Operators

Symbols that perform logical operations on propositions.

19
New cards

Knowledge Representation

Method of expressing information in logic form.

20
New cards

Logical Expression

Combination of propositions and connectives.

21
New cards

Properties of Quantifiers

Rules governing the behavior of quantifiers.

22
New cards

Subject in FOL

Main part of a statement in first-order logic.

23
New cards

Predicate in FOL

Relation that binds two atomic sentences.

24
New cards

Example of Tautology

Every student likes educative.

25
New cards

Example of Contradiction

All birds cannot fly.

26
New cards

Example of Paradox

Not all students like both Mathematics and Science.

27
New cards

Logical Notation

Symbolic representation of logical statements.

28
New cards

Natural Language Representation

Expressing statements in a concise logical form.

29
New cards

Predicate

Function defining relationships between variables.

30
New cards

Existential Quantifier (∃)

Indicates existence of at least one element.

31
New cards

Universal Quantifier (∀)

Indicates all elements satisfy a condition.

32
New cards

Negation (¬)

Logical operator indicating the opposite truth value.

33
New cards

Zero-Sum Game

One player's gain equals another's loss.

34
New cards

General-Sum Game

Players have independent utilities and outcomes.

35
New cards

Minimax Algorithm

Strategy minimizing maximum possible loss.

36
New cards

Alpha-Beta Pruning

Optimization technique reducing nodes evaluated in minimax.

37
New cards

Terminal State

Final state in a game with known utility.

38
New cards

Utility

Measure of preference or satisfaction in outcomes.

39
New cards

Game Tree

Graph representing possible moves in a game.

40
New cards

Depth-First Search (DFS)

Explores as far as possible along branches.

41
New cards

Breadth-First Search (BFS)

Explores all neighbors before moving deeper.

42
New cards

A* Search

Pathfinding algorithm using heuristics for efficiency.

43
New cards

Heuristic

Approximation used to guide search algorithms.

44
New cards

Monte Carlo Tree Search

Probabilistic method for decision-making in games.

45
New cards

Checkers

Board game with simple rules, solved in 2007.

46
New cards

Chess

Complex board game with significant AI advancements.

47
New cards

Go

Ancient board game, advanced AI achieved in 2016.

48
New cards

Game Formulation

Structure defining initial state, players, and actions.

49
New cards

Finite Lookahead

Limited foresight in decision-making processes.

50
New cards

Value of a State

Best achievable outcome from that state.

51
New cards

Adversarial Search

Search strategy considering opponent's possible moves.

52
New cards

Terminal-Test

Function determining if a game has ended.

53
New cards

Action

Move made by a player in a game.

54
New cards

Initial State (s0)

Starting configuration of a game.

55
New cards

Transition Model

Describes how actions change game states.

56
New cards

Team Games

Games where players collaborate for a common goal.

57
New cards

Admissible Heuristic

Heuristic h satisfies 0 ≤ h(n) ≤ h*(n).

58
New cards

True Cost

h*(n) represents actual cost to nearest goal.

59
New cards

Optimal Goal Node

Node A is the best goal in search.

60
New cards

Suboptimal Goal Node

Node B is not the best goal in search.

61
New cards

Expansion Order

A is expanded before B if h is admissible.

62
New cards

f-cost Definition

f(n) = g(n) + h(n) represents total cost.

63
New cards

Admissibility of h

Ensures f(n) ≤ g(A) for optimality.

64
New cards

g(A)

Cost from start to goal A.

65
New cards

Suboptimality of B

g(A) < g(B) indicates B is worse.

66
New cards

A* Tree Search

Optimal if heuristic is admissible.

67
New cards

Uniform-Cost Search (UCS)

Expands nodes equally in all directions.

68
New cards

Heuristic Design

Key to effective A* search performance.

69
New cards

8 Puzzle Heuristic

Count of misplaced tiles measures distance.

70
New cards

Manhattan Distance

Sum of horizontal and vertical distances.

71
New cards

Consistent Heuristic

Ensures f-values are non-decreasing.

72
New cards

Iterative Deepening A (IDA)

Uses f-limit instead of depth limit.

73
New cards

Recursive Best-First Search (RBFS)

Depth-first search with f-limit management.

74
New cards

Simplified Memory A (SMA)

Manages memory by dropping worst node.

75
New cards

Declarative Knowledge

Includes facts and concepts in sentences.

76
New cards

Procedural Knowledge

Knowledge of how to perform tasks.

77
New cards

Meta-Knowledge

Knowledge about other types of knowledge.

78
New cards

Cycle of Knowledge Representation

Components include perception, learning, and planning.

79
New cards

Logical Representation

Language with rules for unambiguous conclusions.

80
New cards

Semantic Network

Graph structure representing relationships between concepts.

81
New cards

Frame Representation

Record-like structure describing entities with attributes.

82
New cards

Production Rules

Condition-action pairs for problem-solving.

83
New cards

Recognize-Act Cycle

Process where conditions trigger actions.

84
New cards

Search Problem

Consists of state space, initial state, actions, and goals.

85
New cards

State Space

Set of all possible configurations in a problem.

86
New cards

Initial State

Starting configuration of the search problem.

87
New cards

Actions

Possible moves available in each state.

88
New cards

Goal Test

Determines if a state is a goal state.

89
New cards

Action Cost

Cost associated with taking an action.

90
New cards

Optimal Solution

Least cost action sequence to reach goal.

91
New cards

State Space Graph

Mathematical representation of a search problem.

92
New cards

Search Tree

Tree structure representing paths in state space.

93
New cards

Uniform Cost Search (UCS)

Expands nodes with lowest cumulative cost.

94
New cards

Iterative Deepening

Combines depth-first space efficiency with breadth-first completeness.

95
New cards

Complete Algorithm

Guaranteed to find a solution if one exists.

96
New cards

Optimal Algorithm

Guaranteed to find least cost path.

97
New cards

Time Complexity

Measure of time taken by an algorithm.

98
New cards

Space Complexity

Measure of memory used by an algorithm.

99
New cards

Agent

Entity that perceives and acts in an environment.

100
New cards

Planning Agent

Decides actions based on future evaluations.