Difference between Informed and Uninformed Search in AI

Rajil TL
1 Min Read
Disclosure: This website may contain affiliate links, which means I may earn a commission if you click on the link and make a purchase. I only recommend products or services that I personally use and believe will add value to my readers. Your support is appreciated!

Informed Search: Informed Search 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. 
Example: Greedy Search and Graph Search 

Uninformed Search: Uninformed search 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. 
Examples: Depth First Search and Breadth-First Search 

Informed Search vs. Uninformed Search: 

 Informed SearchUninformed Search  It uses knowledge for the searching process.It doesn’t use knowledge for searching process.It finds solution more quickly.It finds solution slow as compared to informed search.It may or may not be complete.It is always complete.Cost is low.Cost is high.It consumes less time.It consumes moderate time.It provides the direction regarding the solution.No suggestion is given regarding the solution in it.It is less lengthy while implementation.It is more lengthy while implementation.Greedy Search, A* Search, Graph SearchDepth First Search, Breadth First Search
Share This Article

Rajil TL is a SenseCentral contributor focused on tech, apps, tools, and product-building insights. He writes practical content for creators, founders, and learners—covering workflows, software strategies, and real-world implementation tips. His style is direct, structured, and action-oriented, often turning complex ideas into step-by-step guidance. He’s passionate about building useful digital products and sharing what works.

Leave a review