Recurrence relation in matrix multiplication

Click For Summary
SUMMARY

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.

PREREQUISITES
  • Understanding of recurrence relations
  • Familiarity with the Master Theorem for solving recurrences
  • Basic knowledge of asymptotic notation (Big O notation)
  • Concepts of matrix multiplication and its computational complexity
NEXT STEPS
  • Study the Master Theorem for solving recurrences in detail
  • Research the computational complexity of matrix multiplication algorithms
  • Explore the implications of different recurrence relations in algorithm analysis
  • Learn about advanced techniques in algorithm design, such as divide and conquer
USEFUL FOR

Students in computer science, algorithm enthusiasts, and anyone interested in understanding the complexities of recurrence relations and their applications in matrix multiplication.

priyarrb
Messages
1
Reaction score
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))
 
Physics news on Phys.org
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))
What does this have to do with matrices? Please give us the complete problem statement.

What are you trying to say in your attempt at a solution?
 

Similar threads

  • · Replies 11 ·
Replies
11
Views
2K
Replies
3
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
6
Views
1K
Replies
6
Views
2K
Replies
9
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
Replies
8
Views
3K