Open In App

Difference between Informed and Uninformed Search in AI

What is an Informed Search in AI?

 algorithms have information on the goal state which helps in more efficient searching. This information is obtained by a function that estimates how close a state is to the goal state. Informed search in AI is a type of search algorithm that uses additional information to guide the search process, allowing for more efficient problem-solving compared to uninformed search algorithms. This information can be in the form of heuristics, estimates of cost, or other relevant data to prioritize which states to expand and explore. Examples of informed search algorithms include A* search, Best-First search, and Greedy search. Example: Greedy Search and Graph Search.

Here are some key features of informed search algorithms in AI:

What is an Uninformed Search in AI?

 algorithms have no additional information on the goal node other than the one provided in the problem definition. The plans to reach the goal state from the start state differ only by the order and length of actions. Uninformed search in AI refers to a type of search algorithm that does not use additional information to guide the search process. Instead, these algorithms explore the search space in a systematic, but blind, manner without considering the cost of reaching the goal or the likelihood of finding a solution. Examples of uninformed search algorithms include Breadth-First search (BFS), Depth-First search (DFS), and Depth-Limited search.



Uninformed search algorithms are often used as a starting point for more complex, informed search algorithms or as a way to explore the search space in simple problems. However, in complex problems with large search spaces, uninformed search algorithms may be inefficient and lead to an exponential increase in the number of states explored. Examples: Depth First Search and Breadth-First Search.

Here are some key features of uninformed search algorithms in AI:

Not guaranteed to find optimal solution – uninformed search algorithms do not guarantee an optimal solution, as they do not consider the cost of reaching the goal or other relevant information.



Pre-requisite: Search Algorithms in Artificial Intelligence 

Solutions Informed Search vs. Uninformed Search is depicted pictorially as follows: 

Parameters Informed Search Uninformed Search
Known as It is also known as Heuristic Search.  It is also known as Blind Search.
Using Knowledge It uses knowledge for the searching process.  It doesn’t use knowledge for the searching process.
Performance It finds a solution more quickly. It finds solution slow as compared to an informed search.
Completion It may or may not be complete. It is always complete.
Cost Factor Cost is low. Cost is high.
Time It consumes less time because of quick searching. It consumes moderate time because of slow searching.
Direction There is a direction given about the solution. No suggestion is given regarding the solution in it.
Implementation It is less lengthy while implemented. It is more lengthy while implemented.
Efficiency It is more efficient as efficiency takes into account cost and performance. The incurred cost is less and speed of finding solutions is quick. It is comparatively less efficient as incurred cost is more and the speed of finding the Breadth-Firstsolution is slow.
Computational requirements Computational requirements are lessened. Comparatively higher computational requirements.
Size of search problems Having a wide scope in terms of handling large search problems. Solving a massive search task is challenging.
Examples of Algorithms
  • Greedy Search
  • A* Search
  • AO* Search
  • Hill Climbing Algorithm
  • Depth First Search (DFS)
  • Breadth First Search (BFS)
  • Branch and Bound
Article Tags :