Fast matrix inversion
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Very similar to what has been done to create a function to perform fast multiplication of large matrices using the Strassen algorithm (see previous post), now we write the functions to quickly calculate the inverse of a matrix.
To avoid rewriting pages and pages of comments and formulas, as I did for matrix multiplication, this time I’ll show you directly the code of the function (the reasoning behind it is quite similar). Please, copy and paste all the code in an external editor to see it properly.
strassenInv(A)
strassenInv2(A)
strassenInv3(A)
We run now some test. First check if the function successfully invert the matrix and compare them with the results of the standard R function (Function solve()
):
A
The function performs the operations correctly. But there is a problem of approximation: in fact the first two functions are accurate to the eighth decimal place, while the third through sixth. Probably not an issue of calculus, but it is a problem of expression of numbers in binary format and 32-bit, which causes these errors.
Now we analyze the computation time. See in the table the result, obtained by running the following code:

The results are quite obvious, and using a modification of Strassen algorithm for matrix inversion, there is a real time saving.
Please, remember these two recommendations already made:
– The code is to be improved, and if anyone wants to help me, I will be happy to update my code
– If you consider it useful to use these function for any work, a citation is always welcome (contact me at my e-mail for details)
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.