How to solve x^x = 13 using logarithms

  • Thread starter Thread starter minase
  • Start date Start date
  • Tags Tags
    Logarithms
AI Thread Summary
To solve the equation x^x = 13, logarithms can be utilized, leading to the transformation x ln x = ln(13). The Lambert W-function provides a solution where x can be expressed as x = e^{W(ln(13))}. Additionally, numerical methods such as Newton's Method can approximate the solution, starting with an initial guess near x = 2. By applying the iterative formula, the root converges to approximately 2.6410619. Both methods offer viable approaches to solving the equation effectively.
minase
Messages
42
Reaction score
0
I was trying to solve a problem using logarithm. It says x^x =13 I tried to solve it using logarithm but I couldn't. I used a graphing calculator solver and I found it is 2.6410619... Is it possible to solve using logarithm? If not is there another way to solve besides trying and checking?
 
Physics news on Phys.org
I'm not aware of any way to solve such a problem other than numerically (IE using some numeric approximation). Ah I see VietDao has a solution.
 
Last edited by a moderator:
You can solve it by Lambert W-function, i.e the inverse function of f(x) = xex.
x ^ x = 13
\Leftrightarrow \ln (x ^ x) = \ln (13)
\Leftrightarrow x \ln x = \ln (13)
\Leftrightarrow (\ln x ) e ^ {\ln x} = \ln (13)
\Leftrightarrow \ln x = W( \ln (13))
\Leftrightarrow x = e ^ {W( \ln (13))}
------------------
Or you can get an approximation of it by Newton's Method.
First, we'll try to rearrange the equation to give the form of f(x) = 0
So
\x ^ x = 13
\Leftrightarrow \x ^ x - 13 = 0
Let f(x) = xx - 13
Then we differentiate f(x) with respect to x to give:
f'(x) = xx(ln(x) + 1)
And we choose an arbitrary x0, say x0 = 2 (we should graph it first to chose x0 precisely, we choose x0 since there's one solution near 2).
And we apply the formula:
x_{n + 1} = x_n - \frac{f(x_n)}{f'(x_n)}, and let n increase without bound to obtain the desired solution, i.e:
x = \lim_{n \rightarrow \infty} x_n.
The root of that equation is about 2.641061916.
:)
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top