f = 696.1125540355472 + 3.9668099604385043 x + LogGamma[1 + x] - LogGamma[169 + x]
Plot[f, {x, 0, 10}]
Solve[f == 0, x, Reals]
NSolve[f == 0, x]
I know that the LogGamma probably is causing problems, but is there a way to solve this type of equations? In fact, I have all my functions involve LogGamma, and these need to be solved numerically, for x>0.
Thanks!


FindRoot[f[x] == 0, {x, #}] & /@ {-0, 6}in this case. Also look at the interesting answers here http://mathematica.stackexchange.com/questions/5663/about-multi-root-search-in-mathematica-for-transcendental-equations – PlatoManiac Oct 10 '14 at 00:13