lAuthor: Yunchen Huo (yh2244), Ran Yi (ry357), Yanni Xie (yx682), Changlin Huang (ch2269), Jingyao Tong (jt887) (ChemE 6800 Fall 2024)
Stewards: Nathan Preuss, Wei-Han Chen, Tianqi Xiao, Guoqing Hu
Introduction
Algorithm Discussion
Numerical Example
1. Simple Example
We aim to maximize
, where
. Chromosomes are encoded as 5-bit binary strings since the binary format of the maximum value 31 is 11111.
1.1 Initialization (Generation 0)
The initial population is randomly generated:
Chromosome (Binary)
|
x (Decimal)
|
10010
|
18
|
00111
|
7
|
11001
|
25
|
01001
|
9
|
1.2 Generation 1
1.2.1 Evaluation
Calculate the fitness values:
Chromosome
|
|
|
10010
|
18
|
324
|
00111
|
7
|
49
|
11001
|
25
|
625
|
01001
|
9
|
81
|
1.2.2 Selection
Use roulette wheel selection to choose parents for crossover. Selection probabilities are calculated as:
Thus,
Total Fitness
Compute the selection probabilities:
Chromosome |
 |
Selection Probability
|
10010 |
 |
|
00111 |
 |
|
11001 |
 |
|
01001 |
 |
|
Cumulative probabilities:
Chromosome |
Cumulative Probability
|
10010 |
|
00111 |
|
11001 |
|
01001 |
|
Random numbers for selection:
Selected parents:
- Pair 1: 00111 and 11001
- Pair 2: 11001 and 10010
1.2.3 Crossover
Crossover probability:
Pair 1: Crossover occurs at position 2.
- Parent 1:

- Parent 2:

- Children:
, 
Pair 2: No crossover.
- Children: Child 3:
, Child 4: 
1.2.4 Mutation
Mutation probability:
Child 1:
(bits:
).
- Mutations: Bit 1 and Bit 4 flip.
- Resulting chromosome:
.
Child 2:
(bits:
).
- Mutation: Bit 3 flips.
- Resulting chromosome:
.
Child 3:
(bits:
).
- Mutations: Bit 1 and Bit 5 flip.
- Resulting chromosome:
.
Child 4:
(bits:
).
- Mutations: Bit 1 and Bit 3 flip.
- Resulting chromosome:
.
1.2.5 Insertion
Chromosome |
 |
|
10011 |
 |
|
11011 |
 |
|
01000 |
 |
|
00110 |
 |
|
1.3 Generation 2
1.3.1 Evaluation
Calculate the fitness values:
Chromosome |
 |
|
10011 |
 |
|
11011 |
 |
|
01000 |
 |
|
00110 |
 |
|
1.3.2 Selection
Total fitness:
Compute selection probabilities:
Chromosome |
 |
Selection Probability
|
10011 |
 |
|
11011 |
 |
|
01000 |
 |
|
00110 |
 |
|
Cumulative probabilities:
Chromosome |
Cumulative Probability
|
10011 |
|
11011 |
|
01000 |
|
00110 |
|
Random numbers for selection:
Selected parents:
- Pair 1: 10011 and 11011
- Pair 2: 11011 and 01000
1.3.3 Crossover
Crossover probability:
Pair 1: Crossover occurs at position 2.
- Parent 1:

- Parent 2:

- Children:
, 
Pair 2: Crossover occurs at position 4.
- Parent 1:

- Parent 2:

- Children:
, 
1.3.4 Mutation
Mutation probability:
- Child 1: No mutations.
.
- Child 2: Bit 1 flips.
.
- Child 3: Bit 5 flips.
.
- Child 4: No mutations.
.
1.3.5 Insertion
Chromosome |
 |
|
10011 |
 |
|
01011 |
 |
|
11010 |
 |
|
11011 |
 |
|
1.4 Conclusion
After 2 iterations, the best optimal solution we find is
.
Due to the limitation of the page, we will not perform additional loops. In the following examples, we will show how to use code to perform multiple calculations on complex problems and specify stopping conditions.
2. Complex Example
We aim to maximize the function:
subject to the constraints:
2.1 Encoding the Variables
Each chromosome represents a pair of variables
and
. We encode these variables into binary strings:
:
, precision
, requiring
bits.
:
, precision
, requiring
bits.
Each chromosome is a 16-bit binary string, where the first 8 bits represent
and the next 8 bits represent
.