Question: Professor Caesar wishes to develop an integer-multiplication algorithm that is asymptot- ically faster than Karatsuba's O(nulosz(3)) algorithm. His algorithm will use the divide and conquer

Professor Caesar wishes to develop an integer-multiplication algorithm that is asymptot- ically faster than Karatsuba's O(nulosz(3)) algorithm. His algorithm will use the divide and conquer method, dividing each integer into pieces of size n/4, and the divide and combine steps together will take O(n) time. He needs to determine how many subproblems his algorithm has to create in order to beat Karatsuba's algorithm. If his algorithm cre- ates a (an integer) subproblems, then the recurrence for the running time T(n) becomes T(n) = at(n/4) +n. What is the largest integer value of a for which Professor Caesar's algorithm would be asymptotically faster than O(los:(3))? Justify your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
