For example, we have this problem:
Maximise the function f(X) = X^2 , with 0 ≤ X ≤ 31
Using binary encoding we can represent individuals using 5 bits. After undergoing a selection method, we get to the genetic operators.
For this problem (or any optimisation problem), what are the advantages and disadvantages of the following:
- High or Low crossover rate
- Using 1-Point crossover
- Using multi-point crossover
- Using Uniform crossover
Here's what I came up with so far:
- High crossover rates and multi-point crossover can decrease the quality of parents with good fitness, and produce worse offspring
- Low crossover rates mean the solution will take longer to converge to some optima
It's hard to give a good answer as more information is needed what exactly the 5 bits represent, but I gave it a try: