graou13

reduce formula 101

Oct 21st, 2013
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. A.cost/cps + B.cost/(cps+A.cps) < B.cost/cps + A.cost/(cps+B.cps)
  2. A.cost/cps - A.cost/(cps+B.cps) < B.cost/cps - B.cost/(cps+A.cps)
  3. (A.cost(cps+B.cps))/(cps(cps+B.cps)) - (A.cost*cps)/(cps(cps+B.cps)) < (B.cost(cps+A.cps))/(cps(cps+A.cps)) - (B.cost*cps)/(cps(cps+A.cps))
  4. (A.cost(cps+B.cps)-A.cost*cps)/(cps(cps+B.cps)) < ((B.cost(cps+A.cps)-B.cost*cps)/(cps(cps+A.cps))
  5. A.cost*B.cps/(cps(cps+B.cps)) < B.cost*A.cps/(cps(cps+A.cps))
  6. A.cost* B.cps * cps(cps+A.cps) < B.cost* A.cps * cps(cps+B.cps)
  7. A.cost * cps(cps+A.cps)/A.cps < B.cost * cps(cps+B.cps)/B.cps
  8.  
  9. now that the A and B variables are separated we can just take the first part and voila
  10.  
  11. A.cost * cps(cps+A.cps)/A.cps
Advertisement
Add Comment
Please, Sign In to add comment