I am trying to find the value of $k$ (maybe it does not exist) for
$$\displaystyle \int_k^2 \dfrac{1}{\ln{v}-v} ~ dv=1$$ I used Solving Integrals for my approach as
f[k_?NumericQ] := NIntegrate[1/(Log[x] - x), {x, k, 2}]
FindRoot[f[k] == 1, {k, 2}]
This returns
$${k = 3.7864655704597134}$$
This result is larger than the upper limit of the integration value.
I use Windows 7, MMA version $11.0.1.0$.
Is this approach wrong or am I doing something incorrectly?
k:{k -> 3.78647}with version 11.01 on Mach OS X. – Anton Antonov Feb 20 '17 at 01:15