-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.tex
More file actions
443 lines (441 loc) · 14.9 KB
/
src.tex
File metadata and controls
443 lines (441 loc) · 14.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[letterpaper,top=1.5cm,bottom=1.5cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\usepackage{titlesec}
\usepackage{makecell}
\usetikzlibrary{automata,positioning}
\usetikzlibrary{arrows}
\usepackage{inconsolata}
\usepackage{chessboard}
\storechessboardstyle{5x5}{maxfield=e5, labelbottomformat=}
\usetikzlibrary{shapes}
\makeatletter
\@addtoreset{subsection}{section}
\makeatother
\def\thesection{Question \arabic{section}}
\def\thesubsection{\arabic{section}.\arabic{subsection}}
\def\thesubsubsection{\arabic{section}.\arabic{subsection}.\arabic{subsubsection}}
\title{Artificial Intelligence\\Homework no. 2}
\author{Alireza Rostami\\Student Number: 9832090}
\date{}
\begin{document}
\maketitle
\begin{center}
Find the \LaTeX \ code of this masterpiece at my Github @ github.com/WellOfSorrows.
\end{center}
\section{}
\subsection{}
\qquad A special case of \textit{"Local Beam Search"} when $ k= 1 $ is called \textit{"Hill-Climbing Search"}.
\smallskip
\subsection{}
\qquad This is also \textit{hill-climbing search} since we always keep the best individual of the population, so the mutated individual only replace current individual when the fitness function improves. This is exactly \textit{hill-climbing search}.
\bigskip
\section{}
In each genetic algorithm problem, we must go through the following steps:
\begin{enumerate}
\item Chromosome encoding
\item Initial population
\item Fitness evaluation
\item Selection
\item Crossover
\item Mutation
\item Population update
\item Iteration
\end{enumerate}
\medskip
We shall go through each step one by one.
\pagebreak
\subsection{Encoding}
The best way is to represent a chromosome as a string (or a list) of length $ N $ where $ N $ is the number of queens; in our case $ N=5 $.
The value of each index shows the row of the queen in a column. For example, for the following configuration, we would have:
\begin{table}[!ht]
\parbox{0.45\linewidth}{
\begin{center}
\chessboard[style=5x5,setblack={Qa5,Qb2,Qc4,Qd3,Qe5},showmover=false]
\end{center}
}
\parbox{0.35\linewidth}{
$$
Chromosome:
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}
$$
}
\end{table}
\subsection{Initial Population}
Now, we initialize our population with random chromosomes. Let's take a population of 4 chromosomes as follows:
$$ C_1 =
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}
$$
$$ C_2 =
\begin{array}{|c|c|c|c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}
$$
$$ C_3 =
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&2&4 \\\hline
\end{array}
$$
$$ C_4 =
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&1 \\\hline
\end{array}
$$
\subsection{Fitness Evaluation}
Since in genetic algorithms, higher scores are better, thus we define the fitness function $ F_{total}(C)$ as number of the pairs of non-attacking queens in configuration $ C $. We also assign each queen a unique name by using its index in the chromosome as a subscription and define $ f(x_i) $ as the number of queens the queen $ x_i $ does NOT attack. So, we would attain:
$$ F_{total}(C) = \dfrac{\sum\limits_{i=1}^{5}f(x_i)}{2} $$
Note that we divided the sum by two because of \textit{hand-shaking lemma}. \\
For example, for the chromosome
$ C_1 =
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}
$,\quad we would have
\begin{center}
\chessboard[
style=5x5,
setblack={Qa5,Qb2,Qc4,Qd3,Qe5},
arrow=to,
linewidth=0.12ex,
color=green,
pgfstyle=straightmove,
markmoves={a5-c4,a5-b2,a5-d3},
shortenstart=0.1ex,
showmover=false
]
$ \Rightarrow x_1 = 3 $
\end{center}
\begin{center}
\chessboard[
style=5x5,
setblack={Qa5,Qb2,Qc4,Qd3,Qe5},
pgfstyle=straightmove,
arrow=to,
linewidth=0.125ex,
color=green,
pgfstyle=straightmove,
markmoves={b2-a5,b2-c4,b2-d3},
shortenstart=1ex,
showmover=false
]
$ \Rightarrow x_2 = 3 $
%\end{center}
%\begin{center}
\chessboard[
style=5x5,
setblack={Qa5,Qb2,Qc4,Qd3,Qe5},
pgfstyle=straightmove,
arrow=to,
linewidth=0.125ex,
color=green,
pgfstyle=straightmove,
markmoves={c4-a5,c4-b2,c4-e5},
shortenstart=1ex,
showmover=false
]
$ \Rightarrow x_3 = 3 $
\end{center}
\begin{center}
\chessboard[
style=5x5,
setblack={Qa5,Qb2,Qc4,Qd3,Qe5},
pgfstyle=straightmove,
arrow=to,
linewidth=0.125ex,
color=green,
pgfstyle=straightmove,
markmoves={d3-a5,d3-b2,d3-e5},
shortenstart=1ex,
showmover=false
]
$ \Rightarrow x_4 = 3 $
%\end{center}
%\begin{center}
\chessboard[
style=5x5,
setblack={Qa5,Qb2,Qc4,Qd3,Qe5},
pgfstyle=straightmove,
arrow=to,
linewidth=0.125ex,
color=green,
pgfstyle=straightmove,
markmoves={e5-c4,e5-d3},
shortenstart=1ex,
showmover=false
]
$ \Rightarrow x_5 = 2 $
\end{center}
$$ \Rightarrow F_{total}(C_1) = \frac{14}{2} = 7$$
\\ Then, we need to compute the probability of being chosen from the fitness function. This will be needed for the selection step. First, we need to add all fitness functions of the chromosomes population. Thus, in our case, since the population is of size 4, we would have:
$$ P(C_j) = \frac{F_{total}(C_j)}{\sum\limits_{k = 1}^{4}F_{total}(C_k)}$$
Calculating the fitness function for other chromosomes, we would attain:
$$
\begin{aligned}
F_{total}(C_2) &= 6, \\
F_{total}(C_3) &= 6, \\
F_{total}(C_4) &= 5
\end{aligned}
$$
which means that:
$$
\begin{aligned}
P(C_1) &= \frac{7}{24} = 29\% \\
P(C_2) &= \frac{6}{24} = 25\% \\
P(C_3) &= \frac{6}{24} = 25\% \\
P(C_4) &= \frac{5}{24} = 21\%
\end{aligned}
$$
\newpage
\subsection{Selection}
In this step, we randomly choose the two pairs to reproduce based on their probabilities. Then, selected chromosomes will act as parents and will be combined using a crossover operator to make children. For the crossover operation, we need to pick a crossover point per pair. \\
Here we took the following chromosomes based on their probabilities:
$$ C_1 =
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}
$$
$$ C_2 =
\begin{array}{|c|c|c|c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}
$$
$$ C_3 =
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&2&4 \\\hline
\end{array}
$$ \\
We notice that the chromosome
$ C_4 =
\begin{array}{|c|c|c|c|c|}
\hline
5&2&3&4&1 \\\hline
\end{array}
$ \quad is omitted because its probability was the least among chromosomes, making it unfit to go to the next step. Thus, the selection step would derive: \\
\begin{center}
\begin{tikzpicture}
% set up the nodes
\node (C1) at (0,0) {
$\begin{array}{|c|c|c|c|c|}
\hline
5 & 2 & 3 & 4 & 5 \\
\hline
\end{array}$
};
\node[below=0.6cm of C1] (C2) {
$\begin{array}{|c|c|c|c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}$
};
\node[below=0.6cm of C2] (C3) {$
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&2&4 \\\hline
\end{array}
$};
\node[right=3cm of C1] (nC1) { $
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}$
};
\node[below=0.4cm of nC1] (nC2) { $
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC2] (nC3) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC3] (nC4) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
2&1&3&2&4 \\\hline
\end{array}$
};
% draw arrows and text between them
\draw[->] (C1)--(nC1) node [pos=0.3, above] {$ 29\% $};
\draw[->] (C2)--(nC2) node [pos=0.3, above] {$ 25\% $};
\draw[->] (C2) edge [bend right = 5] node [pos=0.3, above] {$ 25\% $} (nC3);
\draw[->] (C3) edge [bend right = 5] node [pos=0.3, above] {$ 25\% $} (nC4);
\end{tikzpicture}
\end{center}
\subsection{Crossover}
Now we use what we derived in the last step to make new children. \\
In order to do so, a child would be created in the following way: we concatenate the first part of the child's parent with the second part of its other parent. Thus:
\begin{center}
\begin{tikzpicture}
% set up the nodes
\node (C1) at (0,0) {$
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
5&2&3&4&5 \\\hline
\end{array}$
};
\node[below=0.4cm of C1] (C2) { $
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of C2] (C3) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
4&3&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of C3] (C4) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
2&1&3&2&4 \\\hline
\end{array}$
};
\node[right=3cm of C1] (nC1) { $
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
5&2&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC1] (nC2) { $
\begin{array}{|c|c!{\color{red}\vrule width 2.5pt}c|c|c|}
\hline
4&3&3&4&5 \\\hline
\end{array}$
};
\node[below=0.4cm of nC2] (nC3) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
4&3&5&2&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC3] (nC4) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2.5pt}c|c|}
\hline
2&1&3&1&4 \\\hline
\end{array}$
};
\node[below right=0.15cm and 1.25cm of C1, draw, circle, minimum size=.5cm] (transient_1) {};
\node[below right=0.15cm and 1.25cm of C3, draw, circle, minimum size=.5cm] (transient_2) {};
% draw arrows and text between them
\draw[->] (C1) edge [bend left = 15] (transient_1) node {};
\draw[->] (C2) edge [bend right = 15] (transient_1) node {};
\draw[->] (transient_1) edge [bend left = 15] (nC1) node {};
\draw[->] (transient_1) edge [bend right = 15] (nC2) node {};
\draw[->] (C3) edge [bend left = 15] (transient_2) node {};
\draw[->] (C4) edge [bend right = 15] (transient_2) node {};
\draw[->] (transient_2) edge [bend left = 15] (nC3) node {};
\draw[->] (transient_2) edge [bend right = 15] (nC4) node {};
\end{tikzpicture}
\end{center}
\subsection{Mutation}
In the mutation process, we may randomly alter one or more gene values in chromosomes we attained after crossover. So in this example, a random mutation will look like the following:
\begin{center}
\begin{tikzpicture}
% set up the nodes
\node (C1) at (0,0) { $
\begin{array}{|c|c|c|c|c|}
\hline
5&2&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of C1] (C2) { $
\begin{array}{|c|c|c|c|c|}
\hline
4&3&3&4&5 \\\hline
\end{array}$
};
\node[below=0.4cm of C2] (C3) { $
\begin{array}{|c|c|c|c|c|}
\hline
4&3&5&2&4 \\\hline
\end{array}$
};
\node[below=0.4cm of C3] (C4) { $
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&1&4 \\\hline
\end{array}$
};
\node[right=3cm of C1] (nC1) {$
\begin{array}{|c!{\color{red}\vrule width 2pt}c!{\color{red}\vrule width 2pt}c|c|c|}
\hline
5&4&5&1&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC1] (nC2) { $
\begin{array}{|c|c|c!{\color{red}\vrule width 2pt}c!{\color{red}\vrule width 2pt}c|}
\hline
4&3&3&1&5 \\\hline
\end{array}$
};
\node[below=0.4cm of nC2] (nC3) { $
\begin{array}{!{\color{red}\vrule width 2pt}c!{\color{red}\vrule width 2pt}c|c|c|c|}
\hline
1&3&5&2&4 \\\hline
\end{array}$
};
\node[below=0.4cm of nC3] (nC4) { $
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&1&4 \\\hline
\end{array}$
};
% draw arrows and text between them
\draw[->] (C1) edge (nC1) node {};
\draw[->] (C2) edge (nC2) node {};
\draw[->] (C3) edge (nC3) node {};
\draw[->] (C4) edge (nC4) node {};
\end{tikzpicture}
\end{center}
\subsection{Population Update}
In this step, the chromosomes derived in the last step replaces the original population. So our population would become:
$$ C_1 =
\begin{array}{|c|c|c|c|c|}
\hline
5&4&5&1&4 \\\hline
\end{array}
$$
$$ C_2 =
\begin{array}{|c|c|c|c|c|}
\hline
4&3&3&1&5 \\\hline
\end{array}
$$
$$ C_3 =
\begin{array}{|c|c|c|c|c|}
\hline
1&3&5&2&4 \\\hline
\end{array}
$$
$$ C_4 =
\begin{array}{|c|c|c|c|c|}
\hline
2&1&3&1&4 \\\hline
\end{array}
$$
\subsection{Iteration}
We iterate the same procedure we illustrated (from \textit{step 3} to \textit{step 7}) until the $ F_{total} $ of one chromosome becomes:
\[ \exists j \in \{\,1, \, 2, \, 3, \, 4\} \Rightarrow F_{total}(C_j) = \binom{N}{2} = \binom{5}{2} = 10 \]
This is because each queen must not attack all other queens. So, we must have a complete graph of size $ N $. The number of edges of a complete graph is $ \binom{N}{2} $.
\end{document}