How to Solve for x in ln(x) + x = 10: Quick and Easy Method

  • Thread starter Thread starter j3n
  • Start date Start date
j3n
Messages
3
Reaction score
0
hello,
i heard there is some way of solving for x, but i can't for the life of me remember how. please help!

ln(x) + x = 10

thanks!
 
Physics news on Phys.org
Yeah, I think it should be something like this:
lnx>=1
x>=e...(1)
lnx>=1
lnx+x>=1+x
1+x<=10
x<=9
solution set for x: [e,9]
 
Graph intersection: y=ln x and y=10-x.
 
>.< I don't think that's it mate.

Theres no way to solve for x, you can only approximate it.
 
Newton's method works quite nicely here

we will need, the function:

f (x) = ln(x) + x -10 = 0

and its first derivative:

f'(x) = 1/x + 1

an initial guess:

x0 = 1

and we can begin:

x1 = x0 - f(x0)/f'(x0) = 5.5

x2 = x1 - f(x1)/f'(x1) = 7.865213153

x3 = 7.929390693

x4 = 7.929420095

x5 = x4 as far as my calculator is concerned

try it out
 
Just curious how you would use Newton's Method, Gib Z, since you do not use a calculator.
Cheers,
 
Last edited:
j3n said:
hello,
i heard there is some way of solving for x, but i can't for the life of me remember how. please help!

ln(x) + x = 10

thanks!

I wonder if you are not thinking of the "Lambert W function". W(x) is defined as the inverse of the function f(x)= xex.

If ln(x)+ x= 10, then, taking the exponential of each side, eln(x)+ x= xex= e10.

x= W(e10).

Of course, the only way to evaluate that is to do some kind of numerical approximation as others have said,
 
Back
Top