How to solve x^x = 13 using logarithms

  • Thread starter Thread starter minase
  • Start date Start date
  • Tags Tags
    Logarithms
Click For Summary
SUMMARY

The equation x^x = 13 can be solved using the Lambert W-function, which is the inverse function of f(x) = x * e^x. By applying logarithms, the equation transforms to x * ln(x) = ln(13), leading to the solution x = e^(W(ln(13))). Additionally, numerical approximation methods such as Newton's Method can be employed to find the root, with an initial guess of x0 = 2 yielding an approximate solution of 2.6410619.

PREREQUISITES
  • Understanding of logarithmic functions
  • Familiarity with the Lambert W-function
  • Knowledge of Newton's Method for numerical approximations
  • Basic calculus, including differentiation
NEXT STEPS
  • Study the properties and applications of the Lambert W-function
  • Learn how to implement Newton's Method in various programming languages
  • Explore advanced logarithmic identities and their uses in solving equations
  • Investigate other numerical methods for root-finding, such as the bisection method
USEFUL FOR

Mathematicians, students studying calculus, and anyone interested in solving complex equations using advanced mathematical techniques.

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.
[tex]x ^ x = 13[/tex]
[tex]\Leftrightarrow \ln (x ^ x) = \ln (13)[/tex]
[tex]\Leftrightarrow x \ln x = \ln (13)[/tex]
[tex]\Leftrightarrow (\ln x ) e ^ {\ln x} = \ln (13)[/tex]
[tex]\Leftrightarrow \ln x = W( \ln (13))[/tex]
[tex]\Leftrightarrow x = e ^ {W( \ln (13))}[/tex]
------------------
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
[tex]\x ^ x = 13[/tex]
[tex]\Leftrightarrow \x ^ x - 13 = 0[/tex]
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:
[tex]x_{n + 1} = x_n - \frac{f(x_n)}{f'(x_n)}[/tex], and let n increase without bound to obtain the desired solution, i.e:
[tex]x = \lim_{n \rightarrow \infty} x_n[/tex].
The root of that equation is about 2.641061916.
:)
 

Similar threads

Replies
4
Views
3K
Replies
8
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
Replies
3
Views
2K
Replies
22
Views
3K
Replies
10
Views
2K
Replies
3
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K