ARTIFICAIL INTELLIGENCE AO ALGORITHMS NOTES | PPT
Recommended
PPTX
AO* algorithm in Artificial intelligence (AI).pptx
PDF
PPTX
AO star algorithm -Adv-Ltms-comp AI.pptx
PDF
AO Star Algorithm.pdf gfd677878896555666
PDF
AO Star Algorithm.pdfuytyyjhjjhjjhkjkjkjk
PPTX
AO Star Algorithm in Artificial Intellligence
PPTX
AO Star algorithm Artificial Intelligence
PDF
PPTX
PPTX
PPTX
Unit 3 Informed Search Strategies.pptx
PPTX
heuristic technique.pptx...............................
PPTX
Informed search algorithms.pptx
PPT
Unit 2 Topic 4 Informed search strategies AO.ppt
PPTX
A-star Algorithm in artificial intelligence.pptx
PPT
AO_Star_Algorithm (Artificial Intelligence).ppt
PDF
PPTX
A Star Algorithm in Artificial intelligence
PPTX
A* SEARCH ALGORITHM in simpler terms
PPTX
Problem reduction AND OR GRAPH & AO* algorithm.ppt
PPTX
A star algorithm with Pseudcode AI.pptx
PPTX
potential development of the A* search algorithm specifically
PPTX
Lecture 21 problem reduction search ao star search
PPTX
A-Star Search(part-B) in artificial intelligence.pptx
PPTX
PDF
Analysis of algorithms description pdf yeah
PPTX
Artificial intelligence topic for the btech studentCT II.pptx
PPTX
DAA Lecture2 bvased on the general concepts of DAA
PPTX
ARTIFICIAL INTELLIGENCE CONSTRAINT SATISFACTION PROBLEMS (CSPS) AND MINI-MAX....
PPTX
business intelligence and analytics notes
More Related Content
PPTX
AO* algorithm in Artificial intelligence (AI).pptx
PDF
PPTX
AO star algorithm -Adv-Ltms-comp AI.pptx
PDF
AO Star Algorithm.pdf gfd677878896555666
PDF
AO Star Algorithm.pdfuytyyjhjjhjjhkjkjkjk
PPTX
AO Star Algorithm in Artificial Intellligence
PPTX
AO Star algorithm Artificial Intelligence
PDF
Similar to ARTIFICAIL INTELLIGENCE AO ALGORITHMS NOTES
PPTX
PPTX
PPTX
Unit 3 Informed Search Strategies.pptx
PPTX
heuristic technique.pptx...............................
PPTX
Informed search algorithms.pptx
PPT
Unit 2 Topic 4 Informed search strategies AO.ppt
PPTX
A-star Algorithm in artificial intelligence.pptx
PPT
AO_Star_Algorithm (Artificial Intelligence).ppt
PDF
PPTX
A Star Algorithm in Artificial intelligence
PPTX
A* SEARCH ALGORITHM in simpler terms
PPTX
Problem reduction AND OR GRAPH & AO* algorithm.ppt
PPTX
A star algorithm with Pseudcode AI.pptx
PPTX
potential development of the A* search algorithm specifically
PPTX
Lecture 21 problem reduction search ao star search
PPTX
A-Star Search(part-B) in artificial intelligence.pptx
PPTX
PDF
Analysis of algorithms description pdf yeah
PPTX
Artificial intelligence topic for the btech studentCT II.pptx
PPTX
DAA Lecture2 bvased on the general concepts of DAA
More from FIONACHATOLA
PPTX
ARTIFICIAL INTELLIGENCE CONSTRAINT SATISFACTION PROBLEMS (CSPS) AND MINI-MAX....
PPTX
business intelligence and analytics notes
PPTX
VOICE OVER INTERNET PROTOCOL(VOIP) notes
PPTX
PC HARWARE AND TROUBLE SHOOTING INTRODUCTION
PDF
Unit I Data structure and algorithms notes
PDF
UG_B.Sc._Information Technology_129 14_Office Automation Lab.pdf
PPT
computer Hardware and trouble shooting Basics
PPTX
Introduction to Email, internet protocols
PPTX
Introduction to Internet Protocol ADDRESS.pptx
PPTX
introduction to OSI MODEL-WPS Office.pptx
PDF
computer system organization and architecture
PDF
computer fundamentals -e- notes for IT & CS
DOCX
theory of computation notes for school of engineering
DOCX
theory of computation notes for school of engineering
DOCX
theory of computation notes for school of engineering
DOCX
theory of computation notes for school of engineering
DOCX
theory of computation notes for school of engineering
DOCX
in computer data structures and algorithms
Recently uploaded
PDF
2025 October Patch Tuesday
PDF
Application Monitoring and Observability: Elastic Stack Solution for Producti...
PDF
NDP Act GAID Simplified: From Confusion to Compliance
PDF
Meta and Apple close to settling EU cases.pdf
PDF
GPUS and How to Program Them by Manya Bansal
PDF
The Journey Is The Reward - Apple Maps Travel Companion
PDF
TrustArc Webinar - Migration to TrustArc: What Your Journey Will Look Like
PPTX
Agentic AI Solutions and Services | Aeologic
PDF
The invisible key: Securing the new attack vector of OAuth tokens
PPTX
Hybrid Active Directory Cyber Resiliency
PDF
Dragino商品カタログ 2025.7 LoRaWAN・NB-IoT・LTE-M(LTE Cat.M1)対応センサーリスト
PDF
Rivian's Push Notification Sub Stream with Mega Filter by Marcus Kim & Saahil...
PDF
Atlantix is an AI-first venture studio, building companies with AI at the core
PDF
Getting the Best of TrueDEM – October News & Updates
PDF
Unlocking Full-Stack Observability for AIOps: A Precisely Ironstream for Big ...
PDF
Session 4 - Specialized AI Associate Series: UiPath Document Understanding O...
PPTX
"Daily workflows with Cursor IDE", Maksym Anisimov
PDF
How to Measure Microsoft 365 Copilot Success and Manage AI Risk: Advanced Str...
PPTX
WUG-DMV: Workfront Wizards: Tips & Tricks Exchange (Sept 2025)
PDF
UnityNet Digital Sovereignty Checklist 2025-10-13
ARTIFICAIL INTELLIGENCE AO ALGORITHMS NOTES 1. 2. Introduction
AO*algorithm is a powerful search
technique used in artificial intelligence and
computer science.
- It aims to find optimal paths or solutions in a
graph or state space.
- Particularly useful for robotics, pathfinding,
and planning
3. Key Concepts
AND-OR Graphs
• AND-OR graphs - is the process to break down complex problems:
- AND side: Represents tasks that must be completed
together to achieve the main goal.
- OR side: Represents different methods for accomplishing the
same goal.
4. 5. Working of AO* Algorithm
The evaluation function in AO* looks like this:
f(n) = g(n) + h(n)
f(n) = Actual cost + Estimated cost
here,
f(n) = The actual cost of traversal.
g(n) = the cost from the initial node to the current node.
h(n) = estimated cost from the current node to the goal state.
6. Difference between the A*
Algorithm and AO* algorithm
• A* algorithm and AO* algorithm both works on the best first
search.
• They are both informed search and works on given heuristics
values.
• A* always gives the optimal solution but AO* doesn’t guarantee to
give the optimal solution.
• Once AO* got a solution doesn’t explore all possible paths but A*
explores all paths.
• When compared to the A* algorithm, the AO* algorithm uses less
memory.
• opposite to the A* algorithm, the AO* algorithm cannot go into an
7. 8.