Блог пользователя BumbleBee

Автор BumbleBee, история, 6 лет назад, По-английски

I was studying about matrix exponentiation here and it requires a prerequisite which says that I need to know how to find the nth power of a square matrix of dimension d in O((d^3)log(n)).

But I couldn't find any well-explained article on this topic. Can anyone please provide me with some links to blogs/articles that explain this technique?

  • Проголосовать: нравится
  • -3
  • Проголосовать: не нравится

»
6 лет назад, # |
Rev. 2   Проголосовать: нравится +4 Проголосовать: не нравится

You should first know fast exponentiation for numbers. Then you can just do that for matrix, but the multiplying in matrix of size d, takes d^3 time