Suppose I have the following equations:

 x + 2y + 3z = 20  
2x + 5y + 9z = 100  
5x + 7y + 8z = 200

How do I solve these equations for x, y and z? I would like to solve these equations, if possible, using R or any other computer tools.

link|improve this question

74% accept rate
1  
what have you tried so far? – Stedy Nov 16 '11 at 1:58
1  
hint: ?solve ... – Ben Bolker Nov 16 '11 at 1:59
also, I think "ternary" may not be the most descriptive term. I would call this "a set of three coupled linear equations" – Ben Bolker Nov 16 '11 at 2:15
Along with Ben's comment, re-write it as a matrix equation. – Brian Diggs Nov 16 '11 at 5:49
feedback

2 Answers

This should work

A <- matrix(data=c(1, 2, 3, 2, 5, 9, 5, 7, 8), nrow=3, ncol=3, byrow=TRUE)    
b <- matrix(data=c(20, 100, 200), nrow=3, ncol=1, byrow=FALSE)
round(solve(A, b), 3)

     [,1]
[1,]  320
[2,] -360
[3,]  140
link|improve this answer
If you plug the values 120, 0, -20 back into the equations this is incorrect. It is correct if byrow = TRUE. – John Nov 16 '11 at 15:07
@John: Yes you right. I've updated the answer. – MYaseen208 Nov 16 '11 at 15:47
feedback

Another way:

  • Using reduced row echelon form.

Get function from rosseta code:

rref <- function(m) {
  pivot <- 1
  norow <- nrow(m)
  nocolumn <- ncol(m)
  for(r in 1:norow) {
    if ( nocolumn <= pivot ) break;
    i <- r
    while( m[i,pivot] == 0 ) {
      i <- i + 1
      if ( norow == i ) {
        i <- r
        pivot <- pivot + 1
        if ( nocolumn == pivot ) return(m)
      }
    }
    trow <- m[i, ]
    m[i, ] <- m[r, ]
    m[r, ] <- trow
    m[r, ] <- m[r, ] / m[r, pivot]
    for(i in 1:norow) {
      if ( i != r )
        m[i, ] <- m[i, ] - m[r, ] * m[i, pivot]
    }
    pivot <- pivot + 1
  }
  return(m)
}




A <- matrix(data=c(1, 2, 3, 2, 5, 9, 5, 7, 8), nrow=3, ncol=3, byrow=TRUE)    
b <- matrix(data=c(20, 100, 200), nrow=3, ncol=1, byrow=FALSE)

rref(cbind(A,b))
link|improve this answer
1  
Hmm. Could you explain the advantages over the standard solve approach ... ? – Ben Bolker Nov 16 '11 at 12:51
2  
returns incorrect answer... rotate the matrix – John Nov 16 '11 at 15:56
Corrected, thanks John. – AndresT Nov 16 '11 at 17:33
feedback

Your Answer

 
or
required, but never shown

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