Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering what is your recommended way to compute the inverse of a matrix?

The ways I found seem not satisfactory. For example,

> c=rbind(c(1, -1/4), c(-1/4, 1))  
> c  
      [,1]  [,2]  
[1,]  1.00 -0.25  
[2,] -0.25  1.00  
> inv(c)  
Error: could not find function "inv"  
> solve(c)    
          [,1]      [,2]  
[1,] 1.0666667 0.2666667  
[2,] 0.2666667 1.0666667  
> solve(c)*c  
            [,1]        [,2]  
[1,]  1.06666667 -0.06666667  
[2,] -0.06666667  1.06666667  
> qr.solve(c)*c  
            [,1]        [,2]  
[1,]  1.06666667 -0.06666667  
[2,] -0.06666667  1.06666667  

Thanks!

share|improve this question

migrated from stats.stackexchange.com Aug 16 '12 at 21:40

3 Answers

up vote 14 down vote accepted

solve(c) does give the correct inverse. The issue with your code is that you are using the wrong operator for matrix multiplication. You should use solve(c) %*% c to invoke matrix multiplication in R.

R performs element by element multiplication when you invoke solve(c) * c.

share|improve this answer

You can use the function ginv() (generalized inverse) in the MASS package

share|improve this answer

You should use %*% instead of * for matrix multiplication...

> c = rbind(c(1, -1/4), c(-1/4, 1))
> class(c)
[1] "matrix"
> solve(c)
          [,1]      [,2]
[1,] 1.0666667 0.2666667
[2,] 0.2666667 1.0666667
> solve(c)%*%c
     [,1] [,2]
[1,]    1    0
[2,]    0    1

share|improve this answer
1  
This is identical to what @user28 said last November. Please don't add redundant answers. – Rob Hyndman Jul 26 '11 at 6:25
3  
Thank you for your contribution, @gaizoule. It is indeed important to read through a thread before replying, especially when it's an old one. Nevertheless, I am pleased that your answer is correct and hope you will venture to continue answering questions here: we value your insight. In the meantime you might want to review some of the answers offered by higher-reputation users to see what is expected and can be achieved with the tools available here. Welcome to our community! – whuber Jul 26 '11 at 13:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.