Introduction-TADM2E

From Algorithm Wiki
Jump to: navigation, search

Introduction to Algorithm Design

Finding Counterexamples


1-1. Show that $ a + b $ can be less than $ \min(a,b) $.

(Solution 1.1)


1-2. Show that $ a \times b $ can be less than $ \min(a,b) $.

(Solution 1.2)


1-3. Design/draw a road network with two points $ a $ and $ b $ such that the fastest route between $ a $ and $ b $ is not the shortest route.

(Solution 1.3)


1-4. Design/draw a road network with two points $ a $ and $ b $ such that the shortest route between $ a $ and $ b $ is not the route with the fewest turns.


1-5. The knapsack problem is as follows: given a set of integers $ S = \{s_1, s_2, \ldots, s_n\} $, and a target number $ T $, find a subset of $ S $ which adds up exactly to $ T $. For example, there exists a subset within $ S = \{1, 2, 5, 9, 10\} $ that adds up to $ T=22 $ but not $ T=23 $. Find counterexamples to each of the following algorithms for the knapsack problem. That is, giving an $ S $ and $ T $ such that the subset is selected using the algorithm does not leave the knapsack completely full, even though such a solution exists.

  1. Put the elements of $ S $ in the knapsack in left to right order if they fit, i.e. the first-fit algorithm.
  2. Put the elements of $ S $ in the knapsack from smallest to largest, i.e. the best-fit algorithm.
  3. Put the elements of $ S $ in the knapsack from largest to smallest.

(Solution 1.5)


1-6. The set cover problem is as follows: given a set of subsets $ S_1, ..., S_m $ of the universal set $ U = \{1,...,n\} $, find the smallest subset of subsets $ T \subset S $ such that $ \cup_{t_i \in T} t_i = U $. For example, there are the following subsets, $ S_1 = \{1, 3, 5\} $, $ S_2 = \{2,4\} $, $ S_3 = \{1,4\} $, and $ S_4 = \{2,5\} $ The set cover would then be $ S_1 $ and $ S_2 $. Find a counterexample for the following algorithm: Select the largest subset for the cover, and then delete all its elements from the universal set. Repeat by adding the subset containing the largest number of uncovered elements until all are covered.

(Solution 1.6)


Proofs of Correctness


1-7. Prove the correctness of the following recursive algorithm to multiply two natural numbers, for all integer constants $ c \geq 2 $.

  function multiply($ y,z $)
  comment Return the product $ yz $.
  1.     if $ z=0 $ then return(0) else
  2.     return(multiply($ cy,\lfloor z/c \rfloor)+y \cdot (z\,\bmod\,c $))

(Solution 1.7)


1-8. Prove the correctness of the following algorithm for evaluating a polynomial. P(x) = $ a_nx^n + a_{n-1}x^{n-1} + \dots + a_1x + a_0 $

  function horner($ A,x $)
      $ p = A_n $
      for $ i $ from $ n-1 $ to $ 0 $
              $ p = p*x+A_i $
      return $ p $


1-9. Prove the correctness of the following sorting algorithm.

  function bubblesort ($ A $ : list[$ 1 \dots n $])
      var int $ i, j $
      for $ i $ from $ n $ to $ 1 $
          for $ j $ from $ 1 $ to $ i-1 $
              if ($ A[j] > A[j+1] $)
                  swap the values of $ A[j] $ and $ A[j+1] $

(Solution 1.9)


Induction


1-10. Prove that $ \sum_{i=1}^n i $=$ n(n+1)/2 $ for $ n \geq 0 $, by induction.


1-11. Prove that $ \sum_{i=1}^n i^2 $=$ n(n+1)(2n+1)/6 $ for $ n \geq\ 0 $, by induction.

(Solution 1.11)


1-12. Prove that $ \sum_{i=1}^n i^3 $=$ n^2(n+1)^2/4 $ for $ n \geq 0 $, by induction.


1-13. Prove that $ \sum_{i=1}^n i(i+1)(i+2)=n(n+1)(n+2)(n+3)/4 $

(Solution 1.13)


1-14. Prove by induction on $ n \geq 1 $ that for every $ a \neq 1 $, $ \sum_{i=0}^n a^i =\frac{a^{n+1}-1}{a-1} $ }


1-15. Prove by induction that for $ n \geq 1 $, $ \sum_{i=1}^n \frac{1}{i(i+1)} = \frac{n}{n+1} $

(Solution 1.15)


1-16. Prove by induction that $ n^3+2n $ is divisible by $ 3 $ for all $ n \geq 0 $. }{

(Solution 1.16)


1-17. Prove by induction that a tree with $ n $ vertices has exactly $ n-1 $ edges.

(Solution 1.17)


1-18. Prove by mathematical induction that the sum of the cubes of the first $ n $ positive integers is equal to the square of the sum of these integers, i.e. $ \sum_{i=1}^n i^3 = ( \sum_{i=1}^n i )^2 $

(Solution 1.18)


Estimation


1-19. Do all the books you own total at least one million pages? How many total pages are stored in your school library? Schaffer, chapter 2 problem 2.21



1-20. How many words are there in this textbook?


1-21. How many hours are one million seconds? How many days? Answer these questions by doing all arithmetic in your head.

(Solution 1.21)


1-22. Estimate how many cities and towns there are in the United States.


1-23. Estimate how many cubic miles of water flow out of the mouth of the Mississippi River each day. Do not look up any supplemental facts. Describe all assumptions you made in arriving at your answer.

(Solution 1.23)


1-24. Is disk drive access time normally measured in milliseconds (thousandths of a second) or microseconds (millionths of a second)? Does your RAM memory access a word in more or less than a microsecond? How many instructions can your CPU execute in one year if the machine is left running all the time?


1-25. A sorting algorithm takes 1 second to sort 1,000 items on your local machine. How long will it take to sort 10,000 items ...

  1. if you believe that the algorithm takes time proportional to $ n^2 $, and
  2. if you believe that the algorithm takes time roughly proportional to $ n\log n $?

(Solution 1.25)


Implementation Projects


1-26. Implement the two TSP heuristics of tsp-robot. Which of them gives better-quality solutions in practice? Can you devise a heuristic that works better than both of them?


1-27. Describe how to test whether a given set of tickets establishes sufficient coverage in the Lotto problem of lotto. Write a program to find good ticket sets.

(Solution 1.27)

Interview Problems


1-28. Write a function to perform integer division without using either the / or * operators. Find a fast way to do it.

(Solution 1.28)


1-29. There are 25 horses. At most, 5 horses can race together at a time. You must determine the fastest, second fastest, and third fastest horses. Find the minimum number of races in which this can be done.

(Solution 1.29)


1-30. How many piano tuners are there in the entire world?


1-31. How many gas stations are there in the United States?

(Solution 1.31)


1-32. How much does the ice in a hockey rink weigh?


1-33. How many miles of road are there in the United States?

(Solution 1.33)


1-34. On average, how many times would you have to flip open the Manhattan phone book at random in order to find a specific name?