Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 4.93 KB

File metadata and controls

39 lines (24 loc) · 4.93 KB

Verbus M. Counts: CEO of EMR Technical Solutions

Advisor: Charles E. O'Riley Jr.

Interns: Trent Rogers, Kranthi Raj Vellanki, Ember Carpenter

The Traveling Politician Problem SCREENSHOT

A politician hopes to become the president of the United States.  Their campaign starts with the presidential primaries in the capital of Iowa.  The politician then wants to visit the capital of every U.S. state to campaign before ending in the White House in the nation’s capital of Washington, D.C.   The politician does not want to visit any capital more than once.  They would like to campaign in every capital once and only once.  To be efficient and save on time and money, they would like to do this in as short a path as possible.  The Traveling Politician Problem aims to find this shortest path.  The map can be thought of as a graph with 51 points (the capitals of all 50 U.S. states, plus Washington, D.C.) and a set of distances between each of them. The starting point and ending point are already set (the capital of Iowa and Washington, D.C., respectively).  This leaves 49 points to be visited in between the starting and ending points, this does not include the start and end points.

This problem is much harder than it may sound.  The main solution to the problem is factorial time—that is, the time it takes to solve will be proportional to 49!.  It is not 51! because the starting and ending cities are already set.  After starting in Iowa, one of the 49 remaining capitals can be chosen as the first one to travel to.  Now that one of the 49 has been chosen as the first, one of the remaining 48 capitals can be chosen as the second to travel to.  Now there are 47 remaining capitals to choose as the third, and so on.  The total number of paths to be compared will be 49*48*47* .... 3*2*1, which is around a trillion trillion trillion trillion trillion trillion, or, to be more precise:  The value of 49!, i.e., the factorial of 49 is equal to: 608, 281, 864, 034, 267, 560, 872, 252, 163, 321, 295, 376, 887, 552, 831, 379, 210, 240, 000, 000, 000 SCREENSHOT

One particular mistake that is very easy to make here: why not just find the shortest path from the capital of Iowa to any other one state capital, then take the shortest path from there to any other one state capital, and then keep going until you wind up in D.C.?  This could possibly give you a better solution than trillions of trillions of other solutions, but it’s unlikely to give you the very best overall path to D.C.  For example, let’s say we only visit Texas and California in the middle: the distance from Iowa to Texas is shorter than the distance from Iowa to California, so you go to Texas first and then to California and then to D.C.  This is around 5,300 miles.  It’s longer to go to California first than to Texas, but, if you visit California first, then Texas, then D.C., you get around 4,900 miles, which is the shorter path.  As you can see, finding the shortest distance from one capital to another at any given point is not necessarily going to give you the shortest overall path to visit each capital only once.

This problem is based on the “Traveling Salesman Problem”, which is a well-known graph theory problem that has been heavily studied by mathematicians.  Many resources are available to study this problem under the title "Traveling Salesman Problem".

The Traveling Politician Project is being written in various programming languages within this program: Python, Elixr, C++, and Haskell.  I desired to learn a new programming language so I'm pursuing this project using Rust. SCREENSHOT

MacBook Pro

  • Processor 2.9 GHz 6-core Intel Core i9
  • Memory 32 GB 2400 MHz DDR4

Support

Bug reports and feature requests can be filed for the Traveling Politician Problem project here:

License

Licensed under either Apache License 2.0 or under the MIT license.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this program by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Copyright

copyright:: (c) Copyright 2020 Charles E. O'Riley Jr.  All Rights Reserved.