State the definition of an algorithm and define specific


1. State the definition of an algorithm and define specific attributes that must be possessed by an algorithm.

2. Mathematically prove or disprove: log6x = ½log3x

3. Prove that (n + 1)2 ∈ 0(n2) by giving the smallest value of n0 and corresponding constant c in the definition of 0-notation.

4. What, if anything, is wrong with the following statement?

Since n = O(n), 2n = O(n),..., we have k=1nkn = k=1nO(n) = O(n2)

5. Which of the following are true and which are false? If true, provide the smallest value of no and corresponding constants c1 and c2 satisfying the definition of Θ-notation.

a. 2/n + 4/n2 ∈ Θ(1/n2)

b. n log10n ∈ Θ (n log2n)

c. log2n½ ∈ Θ (log2n)

6. Give asymptotically tight big-O bounds for T(n) in each of the following recurrences. Justify your solution by naming the master method case, by iterating the recurrence or by using the substitution method.

a. T(n) = T(n - 2) + 1

b. T(n) = 2T(n/2) + n lg2 n

c. T(n) = 9T(n/4) + n2

d. T(n) = 3T(n/2) + n

e. T(n) = T(n/2 + n0.5) + n

7. Consider a set S of n ≥ 2 distinct numbers all greater than zero in unsorted order. For each of the problems below:

  • Give an algorithm to determine two distinct numbers x and y in the set S that satisfy the condition(s) of the problem.
  • Your algorithm must be specified using pseudocode in the style of the text.
  • You must justify that your algorithm has the requested run time.

a. In O(n Ig n) time, determine x, y ∈ S such that x ≠ y and |x-y| ≤ |w-z| for all w, z ∈ S such that w ≠ z.

b. In O(n) time, determine x, y ∈ S such that |x - y| ≥ |w-z| for all w, z ∈ S for all w, z ∈ S such that w ≠ z.

Request for Solution File

Ask an Expert for Answer!!
Engineering Mathematics: State the definition of an algorithm and define specific
Reference No:- TGS02261541

Expected delivery within 24 Hours