Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

In Section 1.2.3, we studied Euclid’s algorithm for computing the greatest common divisor (gcd) of two positive integers: the largest integer which divides them both. Here we will look at an alternative algorithm based on divide-and-conquer.

(a) Show that the following rule is true.

gcd(a,b)={2gcd(a2,b2)ifa,bareevengcd(ab2)ifaisodd,bisevengcd(a-b2,b)ifa,bareodd

(b) Give an efficient divide-and-conquer algorithm for greatest common divisor.

(c) How does the efficiency of your algorithm compare to Euclid’s algorithm if a and b are n-bit -bit integers? (In particular, since n might be large you cannot assume that basic arithmetic operations like addition take constant time.)

Short Answer

Expert verified

(a) The rule can be proved true by the even-odd substitution.

(b) The efficient algorithm is as follows:

Procedure gcd (a,b)

ifa=b

return a

else if a%2=0b%2=0:

return 2.gcda2,b2

else if a%20b%2=0:

return gcda,b2

else if a%20b%20a>b:

return gcda-b2,b

else if a%20b%20a<b:

returngcda,b-a2

(c) The running time of the divide-and-conquer algorithm is O(n2)comparatively faster than the Euclid’s algorithm.

Step by step solution

01

Explain divide-and-conquer algorithm

Divide-and-conquer algorithm solves the large problem by dividing it into the smaller sub-problems. The sub-problems are solved individually and the results of the sub-problems are combined to get the output of the larger problem.

02

Show that the given rule is true.

(a)

Consider the following given rule,

gcd(a,b)={2gcd(a2,b2)ifa,bareevengcd(ab2)ifaisodd,bisevengcd(a-b2,b)ifa,bareodd

If aand b are even numbers, 2 is a common divisor of aand b. Thus , the greatest common divisor will be 2 times the gcd of numbers a2and b2.

If is odd and b is even, then b is divisible by 2. Thus, the gcd of numbers will be same as gcd of a and b2 .

The third property follows from the fact that if a and b are odd, then (a-b) will be even. Since gcd(a,b)=gcd(a,-b,b) and a-b is even . Now applying the second property will prove that the gcd of a-b2,b

Therefore, it has been proved that the given rule is true.

03

Give the efficient algorithm for divide-and conquer.

(b)

The efficient recursive algorithm for solving divide-and-conquer problem is as follows:

Procedure gcd(a,b)

if a=b:

return a

else if a%2=0b%2=0:

return 2.gcda2,b2

else if a%20b%2=0:

returngcda,b2gcda,b2

else if a%20b%20a>b:

return gcda-b2,b

else if a%20b%20a<b:

return gcda,b-a2

04

Compare the efficiency of the algorithm with Euclid’s algorithm.

(c)

Consider that a and b are n-bit numbers. Size of a and b is 2n bits. Out of 4 if conditions, every on except the case when is odd and is even, decreases the size of aand b to 2n-2 bits. Each of the operation is constant time operation as the dividing and multiplying the numbers by 2. For two subtractions of two n-bit numbers is the number of bits of the operand. Consider the running time complexity in worst case as follows:

T(2n)=T(2n-1)+cnT(2n-1)=T(2n-2)+cnKT(2)=T(1)+c

By substitution,

T(2n)=2c.i=1ni

This results in the running time O(n2)for the divide-and-conquer algorithm. The running time of the Euclid’s algorithm is O(n3).

Therefore, the divide-and conquer algorithm is faster with the running time complexity of O(n2)in worst case.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Find the unique polynomial of degree 4 that takes on values p(1)=2,p(2)=1,p(3)=0,p(4)=4,andp(5)=0. Write your answer in the coefficient representation.

In Section 2.1 we described an algorithm that multiplies two n-bit binary integers x and y in time na, where a=log23. Call this procedure fast multiply (x,y).

(a) We want to convert the decimal integer 10n(a 1 followed by n zeros) into binary. Here is the algorithm (assume n is a power of 2):

function pwr2bin(n)

if n = 1: return10102

else:

z= ???

return fastmultiply(z,z)

Fill in the missing details. Then give a recurrence relation for the running time of the algorithm, and solve the recurrence.

(b) Next, we want to convert any decimal integer x with n digits (where n is a power of 2) into binary. The algorithm is the following:

function dec2bin(x)

if n=1: return binary [ x ]

else:

split x into two decimal numbers xt,xRwith n/2 digits each

return ???

Here binary [.] is a vector that contains the binary representation of all one-digit integers. That is, binary role="math" localid="1659333641173" [0]=02, binary [1]=12, up to binary [9]=10012. Assume that a lookup in binary takes 0(1) time. Fill in the missing details. Once again, give a recurrence for the running time of the algorithm, and solve it.

Section 2.2 describes a method for solving recurrence relations which is based on analyzing the recursion tree and deriving a formula for the work done at each level. Another (closely related) method is to expand out the recurrence a few times, until a pattern emerges. For instance, let’s start with the familiar T(n)=2T(n/2)+o(n). Think of o(n) as being role="math" localid="1658920245976" <cnfor some constant , so: T(n)<2T(n/2)+cn. By repeatedly applying this rule, we can bound T(n) in terms of T(n/2), then T(n/4), then T(n/8), and so on, at each step getting closer to the value of T(.) we do know, namely .

T(1)=0(1).

T(n)2T(n/2)+cn2[2Tn/4+cn/2]+cn=4T(n/4)+2cn4[2Tn/8+cn/4]+2cn=8T(n/8)+3cn8[2Tn/16+cn/8]+3cn=16T(n/16)+4cn

.

.

.

A pattern is emerging... the general term is

T(n)2kT(n/2k)+kcn

Plugging in k=log2n, we get T(n)nT(1)+cnlog2n=0(nlogn).

(a)Do the same thing for the recurrence T(n)=3T(n/2)+0(n). What is the general kth term in this case? And what value of should be plugged in to get the answer?(b) Now try the recurrence T(n)=T(n-1)+0(1), a case which is not covered by the master theorem. Can you solve this too?

Professor F. Lake tells his class that it is asymptotically faster to square an -bit integer than to multiply two n-bit integers. Should they believe him?

An array A [1...n] is said to have a majority element if more than half of its entries are the same. Given an array, the task is to design an efficient algorithm to tell whether the array has a majority element, and, if so, to find that element. The elements of the array are not necessarily from some ordered domain like the integers, a A2 nd so there can be no comparisons of the form “is A[i]>A[j]?”. (Think of the array elements as GIF files, say.) However you can answer questions of the form: “is ..?” in constant time.

(a) Show how to solve this problem in O(nlog n) time. (Hint: Split the array A into two arrays A1 and of half the size. Does knowing the majority elements of A1 and A2 help you figure out the majority element of A? If so, you can use a divide-and-conquer approach.)

(b) Can you give a linear-time algorithm? (Hint: Here’s another divide-and-conquer approach:

  • Pair up the elements of A arbitrarily, to get n/2 pairs
  • Look at each pair: if the two elements are different, discard both of them; if they are the same, keep just one of them
    Show that after this procedure there are at most n/2 elements left, and that they have a majority element if A does.)
See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free