AI
AI
Reasoning in AI: Involves the ability of a machine to solve problems and make
decisions based on logic and knowledge. This includes deductive reasoning (deriving
conclusions from known facts) and inductive reasoning (inferring general rules from
specific examples).
5. List the Brute-Force Search Methods you know, and explain any two (2) of them.
Breadth-First Search (BFS): Explores all nodes at the present depth level
before moving on to nodes at the next depth level. It systematically searches level
by level, ensuring that all possible paths are considered. BFS guarantees the
shortest path in an unweighted graph but can be slow and memory-intensive.
Depth-First Search (DFS): Explores as far as possible along one branch before
backtracking to explore others. It uses a stack-based approach and is memory-
efficient compared to BFS but may not find the shortest path in unweighted graphs.
A* (A-star) Search
Greedy Best-First Search
Best-First Search
Iterative Deepening A* (IDA*)
Bidirectional A*
Beam Search
Memory bounded A Search
Weighted A
Artificial Narrow Intelligence (ANI): Also known as Weak AI, this type is
specialized in a single task and operates under a limited set of conditions.
Examples include facial recognition systems and virtual assistants.
Artificial General Intelligence (AGI): Also known as Strong AI, AGI refers to
machines that have the ability to understand, learn, and apply intelligence across
a wide range of tasks, similar to human cognitive abilities. This is still
theoretical and has not been achieved.