How would one do the asymptotic analysis of Strassen's algorithm to show $T(n)$ is $Θ(n^{log_27})$?
I know $T(n) = 7T(n/2) = 7^2T(n/4) = ... 7^{log_2n} + 1, T(n) = cd^4$ where $d = log_ba $ and $ c = T(1)$ a constant, and $7^{log_2n} = 7^{log_7n * log_27} = (7^{log_7n})^{log_27} = n^{log_27}$ is this sufficient?