I need your help.
I am working on Travelling Salesman Problem. In that problem I have these constraints:
$ \sum\limits_{j=1}^{n} X_{ij} = 1$ , $ i=1,2, ...,n$
$ \sum\limits_{i=1}^{n} X_{ij} = 1 $ , $j=1,2, ...,n$
$X_{ij} \in \{0,1\}$, $X_{ij}=1$ if the arc goes from node i to node j, else $X_{ij}=0$
And Miller Tucker and Zemlin (MTZ) constraints.
$ u_{i}-u_{j}+nX_{ij} \leq n-1$ , $ i \ne j; i,j\in V- \{1\}=\{2, ...,n\}$
I need an example that shows MTZ constraints works.
I don´t understand why with the first and second constraints the graph can contain several subtours?
Thank you :)