pull down to refresh
0 sats \ 1 reply \ @anon 16 Oct \ on: [Daily puzzle] log of a sum and sum of logs science
Using log laws:
log(a) + log(b) + log(c) = log(abc)
Therefore,
log(abc) = log(a + b + c)
abc = a + b + c
Where,
abc, a, b, c > 0
So from here you just rearrange in terms of a:
a = (b + c) / (bc - 1)
...and pick any value for b and c which are greater than 0. Such as:
b = 2, c = 1
a = (2 + 1) / (2*1 - 1) = 3
__@_'-'