There are nine islands mutually connected by bridges, such that no two bridges intersect. If each island can be visited only once, how many possible ways are there to traverse between any selected pair of islands?
Notes:
1) All islands are interconnected to form a complete network.
2) By 'no two bridges intersect', I mean they to not form 4-way intersections (use your imagination to envision the infrastructural layout).
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
To travel from one island to another, one can choose to visit any number of islands (from 0 to 7) in any order inbetween. Suppose we visit k islands before going to the final island, we have a total of ( 7 − k ) ! 7 ! ways to do so: 7 ! if we were to visit every island, over ( 7 − k ) ! for all the islands we don't visit. This gives us a total of:
7 ! 7 ! + 6 ! 7 ! + 5 ! 7 ! + 4 ! 7 ! + 3 ! 7 ! + 2 ! 7 ! + 1 ! 7 ! + 0 ! 7 ! = 1 3 7 0 0 .