Hill climbing is a simple optimization algorithm used in Artificial Intelligence (AI) to find the best possible solution for a given problem. It belongs to the family of local search algorithms and is often used in optimization problems where the goal is to find the best solution from a set of possible solutions.
Hill Climbing can be useful in a variety of optimization problems, such as scheduling, route planning, and resource allocation. However, it has some limitations, such as the tendency to get stuck in local maxima and the lack of diversity in the search space. Therefore, it is often combined with other optimization techniques, such as genetic algorithms or simulated annealing, to overcome these limitations and improve the search results.
Hill Climbing is a heuristic search used for mathematical optimization problems in the field of Artificial Intelligence.
Given a large set of inputs and a good heuristic function, it tries to find a sufficiently good solution to the problem. This solution may not be the global optimal maximum.
It is a variant of generating and testing algorithms. The generate and test algorithm is as follows :
Hence we call Hill climbing a variant of generating and test algorithm as it takes the feedback from the test procedure. Then this feedback is utilized by the generator in deciding the next move in the search space.
At any point in state space, the search moves in that direction only which optimizes the cost of function with the hope of finding the optimal solution at the end.
It examines the neighboring nodes one by one and selects the first neighboring node which optimizes the current cost as the next node.
Algorithm for Simple Hill climbing :
It first examines all the neighboring nodes and then selects the node closest to the solution state as of the next node.
Algorithm for Steepest Ascent Hill climbing :
It does not examine all the neighboring nodes before deciding which node to select. It just selects a neighboring node at random and decides (based on the amount of improvement in that neighbor) whether to move to that neighbor or to examine another.
The state-space diagram is a graphical representation of the set of states our search algorithm can reach vs the value of our objective function(the function which we wish to maximize).
The best solution will be a state space where the objective function has a maximum value(global maximum).
Hill climbing cannot reach the optimal/best state(global maximum) if it enters any of the following regions :
Here is a simple example of hill climbing in Python: