From log(x) + log(x+1) = log(2) you have log(x*(x+1)) = log(2) x*(x+1) = 2 From this point, you may guess both the roots x= 1 and x= -2. // If you do not like guessing, you may solve this quadratic equation formally. Negative x does not fit to logarithm, therefore you get the UNIQUE solution x = 1. ANSWER