Solving x^x = 36: What is the Value of x?

  • Thread starter Epic Sandwich
  • Start date
  • Tags
    Value
In summary, the conversation discusses methods for solving x^x = 36, with the mention of the Lambert's W function and numerical methods such as the secant method. It also mentions the possibility of using Newton's method or the secant method by hand, although most people rely on calculators or computers for convenience. The conversation also includes a playful reference to tricking a friend with a math prank involving pi.
  • #1
Epic Sandwich
25
0
This just crossed my mind a while ago after tricking one of my friends that pi^pi = 36 (he's not the fastest).

Anyway, say we say that x^x = 36. Is there any mathematical way to work out the value of x? The only solution I can think of is trial and error, I can't believe that's the only way to do it though!

Thank you for your help in advance :)
 
Mathematics news on Phys.org
  • #2
Lambert's W function works. Numerical methods are usually used; there are plenty that are better than trial and error. The secant method, in particular, is useful here.

Here's Pari's solution to 500 digits:
Code:
> \p500
   realprecision = 500 significant digits
> solve(x=1,9,x^x-36)
time = 10 ms.
%1 = 3.1356423938890448229304002435243798685431704626991494623687331920918980549484396260412000567683132168848411846174309842591610927438140351855194492146118312054308539184700182238312099667934923102924766875469711375568451864527307249738059671297357877550674305563183865792744445601224970373805346735988344847987303772917155627939948275878697780269822512410680975751300644967399011559837869483582429262545760441341171144409909232083024706624771222873986622339663191335540682429994265917887874699294499044
 
  • #3
Right, how exactly did it generate that? Is there no way of doing it myself to a reasonable degree of accuracy, or do I have to let a computer do it?
 
  • #4
Epic Sandwich said:
Right, how exactly did it generate that?

Brent's algorithm, I think.

Epic Sandwich said:
Is there no way of doing it myself to a reasonable degree of accuracy, or do I have to let a computer do it?

You can use Newton's method or the secant method by hand. Each step of Newton's method roughly doubles the number of correct digits, so if you start with 3.14 (2 correct digits) you should be able to get to 4 digits in one step, 8 in 2 steps, 16 in 3 steps, etc.

But this is like asking how to calculate a square root or a logarithm by hand. There are methods, but beyond just a few digits most people use a calculator or computer for convenience.
 
  • #5
Epic Sandwich said:
This just crossed my mind a while ago after tricking one of my friends that pi^pi = 36 (he's not the fastest).

Very gullible indeed! That's over 1 % error. Engineers won't even accept that anymore.

Next time try telling him pi^3 = 31. Now that's only just over 0.02 % error. You can at least fool the engineers with that one. :wink:
 
  • #6
elect_eng said:
Very gullible indeed! That's over 1 % error. Engineers won't even accept that anymore.

Next time try telling him pi^3 = 31. Now that's only just over 0.02 % error. You can at least fool the engineers with that one. :wink:
Should have rephrased that, I told him that's how pi was generated and that pi^pi is exactly 36. The sum itself just equalling that wouldn't be a very elaborate prank, haha.
 

FAQ: Solving x^x = 36: What is the Value of x?

What is the basic concept behind solving for x in an exponential equation?

The basic concept behind solving for x in an exponential equation is to use logarithms to isolate the variable. In this case, we would take the logarithm of both sides of the equation to bring the exponent down and solve for x.

What is the difference between solving for x in an exponential equation and a regular algebraic equation?

The main difference is that in an exponential equation, the variable is in the exponent and can only be solved using logarithms. In a regular algebraic equation, the variable is typically in the base and can be solved using algebraic manipulation.

How do I solve an exponential equation with different bases on each side?

To solve an exponential equation with different bases, we can use the property that if the bases are equal, then the exponents must also be equal. Therefore, we can set the exponents equal to each other and solve for x.

Can we solve for x if the equation has a fractional exponent?

Yes, we can still solve for x if the equation has a fractional exponent. We would use the same concept of taking the logarithm of both sides to bring the exponent down and solve for x. However, the logarithm would have to be taken with the corresponding fractional base.

Are there any special cases when solving for x in an exponential equation?

Yes, there are a few special cases to consider when solving for x in an exponential equation. These include when the base is negative or when the exponent is 0 or 1. In these cases, the solution may be different or may not exist, so it is important to check for any restrictions or extraneous solutions.

Similar threads

Replies
12
Views
4K
Replies
7
Views
1K
Replies
5
Views
2K
Replies
1
Views
2K
Back
Top