Results 1 to 3 of 3

Thread: simplification of expression

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2003
    Location
    India
    Posts
    2

    Lightbulb simplification of expression

    Can anyone help me to find out to simplify the complex mathematical expression:
    eg:

    (3 X1+ 5 X2+15)/(X1+3 X2+5)=2

    should be outputted as
    X1 - X2 = -5

    variable may be of any no.
    Sandip K sadhukhan

  2. #2
    pathfinder NotLKH's Avatar
    Join Date
    Apr 2001
    Posts
    2,397

    Re: simplification of expression

    Originally posted by sandiphw
    (3 X1+ 5 X2+15)/(X1+3 X2+5)=2
    If the above is meant to actually be:


    (3*X1+ 5*X2+15)/(X1+3*X2+5)=2

    then, this is equivalent to:

    3*X1+ 5*X2+15 = 2*(X1+3*X2+5)

    or:

    3*X1+ 5*X2+15 = 2*X1+6*X2+10

    Or:

    X1*(3-2) + X2*(5-6) + (15-10) = 0

    Or:

    X1 - X2 + 5 = 0




    -Lou

  3. #3
    Fanatic Member riis's Avatar
    Join Date
    Nov 2001
    Posts
    551
    This is true, except when X1 + 3*X2 + 5 = 0, of course. (Division by zero)
    This is the case when X2 = 0.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width