Day 5 Flashcards
Problem-solving agents are the goal-based agents and use atomic representation
True
False
True
Properties of Search Algorithms:
o Completeness
o Optimality
o Time Complexity
o Space Complexity
Completeness: A search algorithm is said to be complete if it guarantees to return a
solution if at least any solution exists for any random input.
True
False
True
Optimality: If a solution found for an algorithm is guaranteed to be the best solution
(lowest path cost) among all other solutions, then such a solution for is said to be an
optimal solution.
True
Time Complexity: Time complexity is a measure of time for an algorithm to complete its task.
True
Space Complexity: It is the maximum storage space required at any point during the
search, as the complexity of the problem.
A search problem can have three main factors:
➢ Search Space: Search space represents a set of possible solutions, which a system may have.
➢ Start State: It is a state from where agent begins the search.
➢ Goal test: It is a function which observe the current state and returns whether the goal state is achieved or not.
—————- represents a set of possible solutions, which a system may have.
Search space
———– It is a state from where agent begins the search.
Start State
——— It is a function which observe the current state and returns whether the goal state is achieved or not.
➢ Goal test
➢Start State
➢ Search Space
➢ Goal test
Search tree: A tree representation of search problem is called Search tree. The root of the search tree is the root node which is corresponding to the initial state.
True
False
True
Actions: It gives the description of all the available actions to the agent.
Actions: It gives the description of all the available actions to the agent.
Transition model: A description of what each action do, can be represented as a transition model.
—————- It is a function which assigns a numeric cost to each path.
Path Cost:
———– It is an action sequence which leads from the start node to the goal node.
Solution