Open In App

Difference between Informed and Uninformed Search in AI

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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:

  • Use of Heuristics – informed search algorithms use heuristics, or additional information, to guide the search process and prioritize which nodes to expand.
  • More efficient – informed search algorithms are designed to be more efficient than uninformed search algorithms, such as breadth-first search or depth-first search, by avoiding the exploration of unlikely paths and focusing on more promising ones.
  • Goal-directed – informed search algorithms are goal-directed, meaning that they are designed to find a solution to a specific problem.
  • Cost-based – informed search algorithms often use cost-based estimates to evaluate nodes, such as the estimated cost to reach the goal or the cost of a particular path.
  • Prioritization – informed search algorithms prioritize which nodes to expand based on the additional information available, often leading to more efficient problem-solving.
  • Optimality – informed search algorithms may guarantee an optimal solution if the heuristics used are admissible (never overestimating the actual cost) and consistent (the estimated cost is a lower bound on the actual cost).

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:

  • Systematic exploration – uninformed search algorithms explore the search space systematically, either by expanding all children of a node (e.g. BFS) or by exploring as deep as possible in a single path before backtracking (e.g. DFS).
  • No heuristics – uninformed search algorithms do not use additional information, such as heuristics or cost estimates, to guide the search process.
  • Blind search – uninformed search algorithms do not consider the cost of reaching the goal or the likelihood of finding a solution, leading to a blind search process.
  • Simple to implement – uninformed search algorithms are often simple to implement and understand, making them a good starting point for more complex algorithms.
  • Inefficient in complex problems – uninformed search algorithms can be inefficient in complex problems with large search spaces, leading to an exponential increase in the number of states explored.

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

Last Updated : 16 Feb, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads