Hi
Why is "is" used in "that is asymptotically" not "will" or "would" like another "will"s or "would" in the text?
"Professor Caesar wishes to develop a matrix-multiplication algorithm that is asymptotically faster than Strassen’s algorithm. His algorithm will use the divideand-conquer method, dividing each matrix into pieces of size n/4 * n/4, and the divide and combine steps together will take theta(n2) time. He needs to determine how many subproblems his algorithm has to create in order to beat Strassen’s algorithm. If his algorithm creates a subproblems, then the recurrence for the running time T(n) becomes T(n)= aT(n/4)+theta(n2). What is the largest integer value of a for which Professor Caesar’s algorithm would be asymptotically faster than Strassen’s algorithm?"
Why is "is" used in "that is asymptotically" not "will" or "would" like another "will"s or "would" in the text?
"Professor Caesar wishes to develop a matrix-multiplication algorithm that is asymptotically faster than Strassen’s algorithm. His algorithm will use the divideand-conquer method, dividing each matrix into pieces of size n/4 * n/4, and the divide and combine steps together will take theta(n2) time. He needs to determine how many subproblems his algorithm has to create in order to beat Strassen’s algorithm. If his algorithm creates a subproblems, then the recurrence for the running time T(n) becomes T(n)= aT(n/4)+theta(n2). What is the largest integer value of a for which Professor Caesar’s algorithm would be asymptotically faster than Strassen’s algorithm?"