priyarrb
- 1
- 0
Homework Statement
T(n)=b n<=2
8T(n/2)+e(n^(2)) n>2
Homework Equations
The Attempt at a Solution
O((n^log)2^(7))
The discussion revolves around solving the recurrence relation T(n) = 8T(n/2) + e(n^2) for n > 2, with the base case T(n) = b for n <= 2. The solution provided is O(n^(log2(8)) * n^2), which simplifies to O(n^3). The participants seek clarification on the connection between this recurrence relation and matrix multiplication, indicating a need for a complete problem statement to understand the context better.
PREREQUISITESStudents in computer science, algorithm enthusiasts, and anyone interested in understanding the complexities of recurrence relations and their applications in matrix multiplication.
What does this have to do with matrices? Please give us the complete problem statement.priyarrb said:Homework Statement
T(n)=b n<=2
8T(n/2)+e(n^(2)) n>2
Homework Equations
The Attempt at a Solution
O((n^log)2^(7))