Design and analyze an algorithm to multiply 2 numbers A and B, each n bits longs, but partitioning them into 3 equal sized pieces each and using the Strassen's algorithm. What is the best running time you can get?
I have two numbers that are n length and separated them into three equal parts. For example, 123 separates into 1, 2, and 3. From my understanding, I have to use matrices. However, Strassen's algorithm does not make any sense to me.
I have watched videos and read lectures but still have no clue on how to proceed. Any help would be appreciated, thank you!