Artificial Intelligence Uninformed Search Techniques (Depth Limited Search, Iterative Deepening Depth First Search, 8-Puzzle Problem)
Artificial Intelligence Uninformed Search Techniques (Depth Limited Search, Iterative Deepening Depth First Search, 8-Puzzle Problem)
Artificial Intelligence Uninformed Search Techniques (Depth Limited Search, Iterative Deepening Depth First Search, 8-Puzzle Problem)
LECTURE 4
8- Puzzle Problem)
8-PUZZLE PROBLEM
8-puzzle problem consists of 3x3 matrix have eight tiles and one empty space and we have to
start from an initial state and have to find the goal state by moving the tiles into the empty space.
Rules of solving puzzle
Instead of moving the tiles in the empty space we can visualize moving the empty space in place
of the tile.
The empty space can only move in four directions (Movement of empty space)
- Up
- Down
- Right or
- Left
The empty space cannot move diagonally and can take only one step at a time.
Example:
Let's solve the problem without Heuristic Search that is Uninformed Search or Blind Search
using Breadth First Search.