[Solved]-Problem Set 2- Solution

$30.00 $19.00

Advice 1 : For every problem in this class, you must justify your answer: show how you arrived at it and why it is correct. If there are assumptions you need to make along the way, state those clearly. Advice 2 : Purely verbal or purely mathematical reasoning is typically insu cient for full credit.…

You’ll get a: . zip file solution

 

 

Description

5/5 – (2 votes)

Advice 1 : For every problem in this class, you must justify your answer: show how you arrived at it and why it is correct. If there are assumptions you need to make along the way, state those clearly.

Advice 2 : Purely verbal or purely mathematical reasoning is typically insu cient for full credit. Instead, use mathematics to make your argument more precise and logical, and use language to explain your mathematical reasoning more clearly.

  1. (20 pts total) Solve the following recurrence relations using any of the following meth-ods: unrolling, tail recursion, recurrence tree (include tree diagram), or expansion. Each each case, show your work.

    1. T (n) = T (n 2) + C n if n > 1, and T (n) = C otherwise

    1. T (n) = 3T (n 1) + 1 if n > 1, and T (1) = 3

    1. T (n) = T (n 1) + 3n if n > 1, and T (1) = 3

    1. T (n) = T (n1=4) + 1 if n > 2 , and T (n) = 0 otherwise

  1. (10 pts) Consider the following function:

def foo(n) {

if (n > 1) {

print( ’’hello’’ ) foo(n/3) foo(n/3)

}}

In terms of the input n, determine how many times is \hello” printed. Write down a recurrence and solve using the Master method.

  1. (30 pts) Professor McGonagall asks you to help her with some arrays that are ralu-dominular. A raludominular array has the property that the subarray A[1::i] has the property that A[j] > A[j + 1] for 1 j < i, and the subarray A[i::n] has the property that A[j] < A[j + 1] for i j < n. Using her wand, McGonagall writes the follow-ing raludominular array on the board A = [7; 6; 4; 1; 2; 9; 5; 3; 10; 13], as an example.

    1. Write a recursive algorithm that takes asymptotically sub-linear time to nd the minimum element of A.

1

      1. Prove that your algorithm is correct. (Hint: prove that your algorithm’s correct-ness follows from the correctness of another correct algorithm we already know.)

      1. Now consider the multi-raludominular generalization, in which the array contains k local minima, i.e., it contains k subarrays, each of which is itself a raludominular array. Let k = 2 and prove that your algorithm can fail on such an input.

      1. Suppose that k = 2 and we can guarantee that neither local minimum is closer than n=3 positions to the middle of the array, and that the \joining point” of the two singly-raludominular subarrays lays in the middle third of the array. Now write an algorithm that returns the minimum element of A in sublinear time. Prove that your algorithm is correct, give a recurrence relation for its running time, and solve for its asymptotic behavior.

  1. (15 pts extra credit)

Asymptotic relations like O, , and represent relationships between functions, and these relationships are transitive. That is, if some f(n) = (g(n)), and g(n) = (h(n)), then it is also true that f(n) = (h(n)). This means that we can sort functions by their asymptotic growth.1

Sort the following functions by order of asymptotic growth such that the nal arrange-ment of functions g1; g2; : : : ; g12 satis es the ordering constraint g1 = (g2), g2 = (g3),

    • : : , g11 = (g12).

n

n1:5

8lg n

4lg n

n!

(lg n)!

5

n

n1= lg n

n lg n

lg(n!)

en

42

4

Give the nal sorted list and identify which pair(s) functions f(n); g(n), if any, are in the same equivalence class, i.e., f(n) = (g(n)).

1The notion of sorting is entirely general: so long as you can de ne a pairwise comparison operator for a set of objects S that is transitive, then you can sort the things in S. For instance, for strings, we use a comparison based on lexical ordering to sort them. Furthermore, we can use any sorting algorithm to sort S, by simply changing the comparison operators >, <, etc. to have a meaning appropriate for S. For instance, using , O, and , you could apply QuickSort or MergeSort to the functions here to obtain the sorted list.

2