95 Ibn Al-Haitham Jour. for Pure & Appl. Sci. 32 (3) 2019 Sajjad Majeed Jasim Faez Hassan Ali Abstarct The traveling salesman problem (TSP) is a well-known and important combinatorial optimization problem. The goal is to find the shortest tour that visits each city in a given list exactly once and then returns to the starting city. In this paper we exploit the TSP to evaluate the minimum total cost (distance or time) for Iraqi cities. So two main methods are investigated to solve this problem; these methods are; Dynamic Programming (DP) and Branch and Bound Technique (BABT). For the BABT, more than one lower and upper bounds are be derived to gain the best one. The results of BABT are completely identical to DP, with less time for number of cities (n), 5 โ‰ค n โ‰ค 25. These results proof the efficiency of BABT compared with some good heuristic methods. We are suggesting some additional techniques to improve the computation time of BABT for n โ‰ค 80. Keywords: Travelling Salesman Problem, Dynamic Programming, Branch and Bound, Greedy method and Minimizing Distance Method. 1. Introduction In the field of combinatorial optimization, the Traveling Salesman Problem (TSP) is probably the most famous and extensively studied problem, which aims to find the shortest Hamiltonian Cycle in a graph. This problem is NP-hard: that is to say, no polynomial time algorithm is known for solving this problem at present [1]. The algorithms for solving the TSP can be categorized into two main paradigms: exact algorithms and heuristic algorithms. The exact algorithms are guaranteed to find the optimal solution in an exponential number of steps. The major limitation of these algorithms is that they are quite complex and have heavy requirement of computing time [1]. For such reason, it is very difficult to find optimal solution for the TSP, especially for problems with a very large number of cities. Heuristic algorithms attempt to solve the Traveling Salesman Problem focusing on tour construction methods and tour improvement methods. Tour construction methods build up a solution step by step, while tour improvement methods start with an initial tour then try to transform it into a shortest tour [1]. Ibn Al Haitham Journal for Pure and Applied Science Journal homepage: http://jih.uobaghdad.edu.iq/index.php/j/index Doi:10.30526/32.3.2286 Using Travelling Salesman Principle to Evaluate the Minimum Total Cost of the Iraqi Cities Department of Mathematics, Collage of Sciences, University of Mustansiriyah, Baghdad, Iraq. sajadm49@gmail.com faezhassan@uomustansiriyah.edu.iq Article history: Received 17 February 2019, Accepted 24 March 2019, Publish September 2019 mailto:sajadm49@gmail.com mailto:faezhassan@uomustansiriyah.edu.iq 96 Ibn Al-Haitham Jour. for Pure & Appl. Sci. 32 (3) 2019 2. TSP Background and Formulation The first researcher, in 1932, considered the traveling salesman problem [2]. Menger gives interesting ways of solving TSP. He lays bare the first approaches which were considered during the evolution of TSP solutions. An exposition on TSP history is available in [2]. The mathematical formulation of TSP is as follows: The distance between the towns i and j is marked with dij. ๐‘€๐‘–๐‘›๐‘–๐‘š๐‘–๐‘ง๐‘’ ๐ถ = โˆ‘ โˆ‘ ๐‘‘๐‘–๐‘— ๐‘ฅ๐‘–๐‘— ๐‘› ๐‘—=1 ๐‘› ๐‘–=1 s. t. โˆ‘ ๐‘ฅ๐‘–๐‘— ๐‘› ๐‘—=1 = 1, ๐‘– = 1, โ€ฆ , ๐‘› โˆ‘ ๐‘ฅ๐‘–๐‘— ๐‘› ๐‘–=1 = 1, ๐‘— = 1, โ€ฆ , ๐‘› xij=0 or 1.[2]. ๐‘ฅ๐‘–๐‘— = { 1, if city ๐‘— is reached from city ๐‘– 0, otherewise C is the total cost of travel. 3. Some Exact Methods to Solve TSP 3.1 Dynamic Programming [3]. Dynamic programming (DP) is a method of solving problems by breaking the solution into a set of steps or stages so that the solution of the problem can be viewed from a series of interrelated decisions. The inventor and the person responsible for the popularity of DP is Richard Bellman. In DP, a series of optimal decisions are made by using the principle of optimality. The principle of optimality: if the optimal total solution, then the solution to the k th stage is also optimal. With the principle of optimality is guaranteed that at some stage of decision making is the right decision for the later stages. The essence of DP is to remove a small part of a problem at every step, and then solve the smaller problems and use the results of the settlement to remedy the solution is added back to the issue in the next step. The algorithm of the DP is as follows: Dynamic Programming Algorithm [3]. Initialization steps ๏‚ท Complete directed graph (G). ๏‚ท Non-empty finite set of vertices on a graph (V), V = {1, 2, 3, ... n}. ๏‚ท The set of edges in a graph (E). ๏‚ท The distance from i to j (the distance between cities) dij, where dij โ‰  dji. ๏‚ท The series lines (S), S ๏ƒ {2, 3, ..., n}. ๏‚ท The weight of the shortest path that starts at vertex i that through all vertices in S and ends at vertex 1 (f (i, S)), i๏ƒ S and S โ‰  ร˜. Therefore the steps in solving the TSP with DP are as follows: Step 1: Determining the basis of the graph Hamiltonian that has been represented to be an adjacency matrix to the equation: 97 Ibn Al-Haitham Jour. for Pure & Appl. Sci. 32 (3) 2019 ๐‘“(๐‘–, โˆ…) =di,1, 2 ๏‚ฃ i ๏‚ฃ n Step 2: Calculate f (i, S) for |S| = 1, then we can obtain f (i, S) for |S| = 2, until |S| = n-1. With the equation: ๐‘“ ( ๐‘– , ๐‘  ) = ๐‘š๐‘–๐‘›{ ๐‘—๏ƒŽ ๐‘† dij ๏€ซ f ( j , S ๏€ญ๏ปj๏ฝ)๏ฝ Step 3: Having obtained the results from step 2, then calculate the equation of a recursive relationship by following equation: ๐‘“(1, ๐‘ฃ โˆ’ {1}) = ๐‘š๐‘–๐‘› 2โ‰ค๐‘˜โ‰ค๐‘› {d1k+f (k,V-{1,k})} Step 4: After calculating a recursive equation in step 3, will be obtained by weighting the shortest path, then to obtain an optimal solution or length of the shortest path for a graph is to calculate f (1, {2, 3, 4, ..., n}) which means long lines from the initial vertex (1) to vertex 1 after passing through the vertices 2, 3, 4, .., n with any order (for the minimum) then locate the forming of the minimum optimal solution which has been obtained. 3.2 Branch and Bound Technique for Solving TSP BAB technique (BABT) is most widely used in TSP by constructing a state space tree to find the optimal solution among all feasible solutions by taking the value of the objective function. Branch and bound was initially studies by Dantzig and a more description was provided by him in the applications of TSP. The BABT gives all feasible solutions by solving the problem, by trying the practical solution ad starting the value in the upper bound for finding the optimal solutions [4]. The algorithm of the BABT is as follows: Branch and Bound Technique (BABT) Algorithm [5]. Step 1: Choose a starting point. Step 2: Choose one of the routes for that point. Step 3: After choosing that route between the current point and unvisited point add the distance. After doing that choose a new destination without choosing the same point. Step 4: Keep doing this until we have gone through each point. Step 5: Add up each distance of each subgroup. 4. Some Heuristic Methods to Solve TSP [6]. In this section we will discuss two heuristic methods; Greedy method, Branch and Bound Method and Improved Minimum distance method. The Greedy method (GRM) starts by sorting the edges by length, and always adding the shortest remaining available edge to the tour. The shortest edge is available if it is not yet added to the tour and if adding it would not create a 3-degree vertex or a cycle with edges less than n. This heuristics can be applied to run in O (n 2 log(n)) time. The terms โ€œBranch and Boundโ€ represent all the state space search methods such that all the children of E-node are generated any now nodes called line node when it became E-node. E-node is the node, which can be expended. The live-node is node generated all of whose children are not yet been expanded. A node which cannot be expanded called dead node, but this node can be useful for backtracking concept. If there are no more children to expand then we have to reach its parent and expand its children and we do so until we obtain the solution or complete tree path, this method is different in technique from BABT mentioned in section (3-2). The Minimizing Distance Method (MDM) is an efficient method for finding a good solution, but it has a weak point. This weak point has been manipulated by improved 98 Ibn Al-Haitham Jour. for Pure & Appl. Sci. 32 (3) 2019 minimum distance method (IMDM) which is suggested in [6]. The IMDM has good achievement with high efficiency for solving TSP. 5. Using DP to Solve TSP In this section the method of DP was applied to solve TSP. The obtained results were better than the method of Complete Enumeration Method (CEM) in terms of time and number of cities. In this paper set of practical examples are be used with different choices for n such that 5โ‰คnโ‰ค80 with integer distance such that dij๏ƒŽ[1,30] for 5โ‰คnโ‰ค30 and dij๏ƒŽ[1,100] for 30