Changes between Initial Version and Version 1 of Ticket #2606, comment 5
- Timestamp:
- 2014-03-01T07:51:31Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2606, comment 5
initial v1 1 1 I would say no: 2 2 {{{ 3 a = (1 - b) *c + b*d4 a = c - b *c + bd5 a - c = - b(c + d) 6 c - a = b ( c + d) 7 b = (c - a) / (c + d) 3 a = (1 - b)c + bd 4 a = c - bc + bd // multiply c with (1 - b) 5 a - c = - b(c + d) // move c on the other side and factor b 6 c - a = b ( c + d) // move -1 on the other side 7 b = (c - a) / (c + d) // divide 8 8 }}}