118007220 _ NAME (AI)
118007220 _ NAME (AI)
TECHNOLOGY
KEY FEATURES:
• Simple and easy to implement.
• May get stuck in local maxima, plateaus, or
ridges.
• Variants include steepest ascent, simple hill
climbing, and stochastic hill climbing
BEST-FIRST SEARCH
Key Features:
• Optimal and complete if the heuristic is
admissible (never overestimates).
• Balances between greedy search and uniform-
cost search.
• Widely used in pathfinding and graph
traversal.
AO* ALGORITHM
• THE AO* (AND-OR) ALGORITHM IS USED FOR SEARCHING IN PROBLEM SPACES
WHERE SOLUTIONS CAN BE REPRESENTED AS A COMBINATION OF AND AND OR
NODES. IT CONSTRUCTS A SOLUTION GRAPH RATHER THAN A SOLUTION PATH.
Key Features:
Key Features:
Helps in simplifying and structuring complex
problems.Often used in conjunction with search
algorithms.Applicable in fields like dynamic
programming and divide-and-conquer strategies.
CONSTRAINT SATISFACTION
Key Features:
• Common in scheduling, planning, and resource allocation.
• Solved using methods like backtracking, forward checking,
and constraint propagation.
• Allows for a structured approach to solving combinatorial
problems.
MEANS-ENDS ANALYSIS
Key Features:
• Involves breaking down the problem into
subgoals.
• Uses both forward and backward reasoning.
• Effective in heuristic problem-solving and
planning.
CONCLUSION