Lecture 3 Flashcards
States
They describe the configuration of the environment.
Actions
Move an agent from one state to another
Transition model (Successor function)
Describes what each action does
State space
The set of states reachable from the initial state by applying any sequence of actions
What is the difference between a goal state and a solution?
Goal state is the destination, Solution includes the path
When is a search solution optimal?
When it has the lowest path cost.
Think through the states, actions, goal test, and path cost for the following.
8-puzzle
Robotics assembly
Pacman
What’s the difference between the search state and the world state?
The world state includes every detail of the environment, search state only keeps details needed for problem solving.
Can state space graphs usually be built?
No, usually too many states to build, not enough memory
What is the difference between a search tree and state tree?
In a state space graph each state only occurs once. A state tree is meant to model possible futures.