Suppose that are two connected vertices in a potentially infinite graph with a maximum branching factor of , then it's possible that DFS may not find a path connecting and .
Suppose we have the embedded graph of , but we also have a child node of which is distinct from called , then if DFS expands first, then it will never expand because it will go down the infinite chain of natural numbers.
DFS Example
Assuming that we push characters onto the frontier in alphabetical order (A before B ...), specify the order of the nodes that would be explored by DFS with no cycle checking. Assume that S is the initial node, while G is the goal node.