Mutation is a genetic operator used to maintain genetic diversity of the chromosomes of a population of an evolutionary algorithm (EA), including genetic algorithms in particular. It is analogous to biological mutation.
The classic example of a mutation operator of a binary coded genetic algorithm (GA) involves a probability that an arbitrary bit in a genetic sequence will be flipped from its original state. A common method of implementing the mutation operator involves generating a random variable for each bit in a sequence. This random variable tells whether or not a particular bit will be flipped. This mutation procedure, based on the biological point mutation, is called single point mutation. Other types of mutation operators are commonly used for representations other than binary, such as floating-point encodings or representations for combinatorial problems.
The purpose of mutation in EAs is to introduce diversity into the sampled population. Mutation operators are used in an attempt to avoid local minima by preventing the population of chromosomes from becoming too similar to each other, thus slowing or even stopping convergence to the global optimum. This reasoning also leads most EAs to avoid only taking the fittest of the population in generating the next generation, but rather selecting a random (or semi-random) set with a weighting toward those that are fitter.
The following requirements apply to all mutation operators used in an EA:
every point in the search space must be reachable by one or more mutations.
there must be no preference for parts or directions in the search space (no drift).
small mutations should be more probable than large ones.
For different genome types, different mutation types are suitable. Some mutations are Gaussian, Uniform, Zigzag, Scramble, Insertion, Inversion, Swap, and so on. An overview and more operators than those presented below can be found in the introductory book by Eiben and Smith or in.
Contents
Bit string mutation
The mutation of bit strings ensue through bit flips at random positions.
Example:
The probability of a mutation of a bit is
1
l
{\displaystyle {\frac {1}{l}}}
, where
l
{\displaystyle l}
is the length of the binary vector. Thus, a mutation rate of
1
{\displaystyle 1}
per mutation and individual selected for mutation is reached.
Mutation of real numbers
Many EAs, such as the evolution strategy or the real-coded genetic algorithms, work with real numbers instead of bit strings. This is due to the good experiences that have been made with this type of coding.
The value of a real-valued gene can either be changed or redetermined. A mutation that implements the latter should only ever be used in conjunction with the value-changing mutations and then only with comparatively low probability, as it can lead to large changes.
In practical applications, the respective value range of the decision variables to be changed of the optimisation problem to be solved is usually limited. Accordingly, the values of the associated genes are each restricted to an interval
[
x
min
,
x
max
]
{\displaystyle [x_{\min },x_{\max }]}
. Mutations may or may not take these restrictions into account. In the latter case, suitable post-treatment is then required as described below.
Mutation without consideration of restrictions
A real number
x
{\displaystyle x}
can be mutated using normal distribution
N
(
0
,
σ
)
{\displaystyle {\mathcal {N}}(0,\sigma )}
by adding the generated random value to the old value of the gene, resulting in the mutated value
x
′
{\displaystyle x'}
:
x
′
=
x
+
N
(
0
,
σ
)
{\displaystyle x'=x+{\mathcal {N}}(0,\sigma )}
In the case of genes with a restricted range of values, it is a good idea to choose the step size of the mutation
Mutation with consideration of restrictions
One possible form of changing the value of a gene while taking its value range
[
x
min
,
x
max
]
{\displaystyle [x_{\min },x_{\max }]}
into account is the mutation relative parameter change of the evolutionary algorithm GLEAM (General Learning Evolutionary Algorithm and Method), in which, as with the mutation presented earlier, small changes are more likely than large ones.
First, an equally distributed decision is made as to whether the current value
x
{\displaystyle x}
should be increased or decreased and then the corresponding total change interval is determined. Without loss of generality, an increase is assumed for the explanation and the total change interval is then
[
x
,
x
max
]
{\displaystyle [x,x_{\max }]}
. It is divided into
k
{\displaystyle k}
Common properties
For both mutation operators for real-valued numbers, the probability of an increase and decrease is independent of the current value and is 50% in each case. In addition, small changes are considerably more likely than large ones. For mixed-integer optimization problems, rounding is usually used.
Mutation of permutations
Mutations of permutations are specially designed for genomes that are themselves permutations of a set. These are often used to solve combinatorial tasks. In the two mutations presented, parts of the genome are rotated or inverted.
Rotation to the right
The presentation of the procedure is illustrated by an example on the right:
Inversion
The presentation of the procedure is illustrated by an example on the right:
Variants with preference for smaller changes
The requirement raised at the beginning for mutations, according to which small changes should be more probable than large ones, is only inadequately fulfilled by the two permutation mutations presented, since the lengths of the partial lists and the number of shift positions are determined in an equally distributed manner. However, the longer the partial list and the shift, the greater the change in gene order.
This can be remedied by the following modifications. The end index
j
{\displaystyle j}
of the partial lists is determined as the distance
d
{\displaystyle d}
to the start index
i
{\displaystyle i}
:
j
=
(
i
+
d
)
mod
|
P
0
|
{\displaystyle j=(i+d){\bmod {\left|P_{0}\right|}}}
where
d