Changes between Initial Version and Version 1 of Ticket #2606, comment 5


Ignore:
Timestamp:
2014-03-01T07:51:31Z (11 years ago)
Author:
Adrian Pop

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2606, comment 5

    initial v1  
    11I would say no:
    22{{{
    3 a = (1 - b)*c + b*d
    4 a = c - b*c + bd
    5 a - c = - b(c + d)
    6 c - a = b ( c + d)
    7 b = (c - a) / (c + d)
     3a = (1 - b)c + bd
     4a = c - bc + bd // multiply c with (1 - b)
     5a - c = - b(c + d) // move c on the other side and factor b
     6c - a = b ( c + d) // move -1 on the other side
     7b = (c - a) / (c + d) // divide
    88}}}