New Reply

2^x=x^5 anyway to solve this?

 
Share Thread
Aug28-12, 11:14 AM   #1
 

2^x=x^5 anyway to solve this?


anyway to solve this? if so what level of math is needed?
PhysOrg.com mathematics news on PhysOrg.com

>> Pendulum swings back on 350-year-old mathematical mystery
>> Bayesian statistics theorem holds its own - but use with caution
>> Math technique de-clutters cancer-cell data, revealing tumor evolution, treatment leads
Aug28-12, 11:25 AM   #2
 
Mentor
Blog Entries: 8
You might be able to solve it used the Lambert W functio: http://en.wikipedia.org/wiki/Lambert_W_function. I wouldn't hope for an exact solution though, except if you can "see" one.
Aug28-12, 11:32 AM   #3
 
what if you logged both sides using log with 2 power base?

you get x = 5 lnx

is that easier to solve?
Aug28-12, 11:32 AM   #4
 
Recognitions:
Science Advisor Science Advisor

2^x=x^5 anyway to solve this?


Quote by EternityMech View Post
anyway to solve this? if so what level of math is needed?
As micromass said, you can't really solve that type of equation algebraically. In some simple case you might just "spot" a solution by inspection (eg 2^x = x^2; x=2 or x=4).

You can solve the equation numerically or manipulate the Lambert-W function into a solution.

The Lambert-W function W(x) is defined as the solution (w) to [itex]we^w = x[/itex].

BTW. How many real solutions are you expecting to get for that equation?
Aug28-12, 11:36 AM   #5
 
Recognitions:
Science Advisor Science Advisor
Quote by EternityMech View Post
what if you logged both sides using log with 2 power base?

you get x = 5 lnx

is that easier to solve?
No, there's still no algebraic solution.

You're best to write it as [itex]e^{ax} = x^5[/itex] and then take the fifth root of each side. (a = sqrt(2) btw).

[itex]x e^{-ax/5} = 1[/itex]

From here you can fairly easily manipulate it into Lambert's equation.
Aug28-12, 11:43 AM   #6
 
Quote by uart View Post

BTW. How many real solutions are you expecting to get for that equation?
all of them....?
Aug28-12, 12:00 PM   #7
 
Recognitions:
Homework Helper Homework Help
Quote by EternityMech View Post
all of them....?
Can you deduce how many there are?
Aug28-12, 12:16 PM   #8
 
Quote by Mentallic View Post
Can you deduce how many there are?
2 if you use calculus it seems atleast according to wolfram. been looking into the lambert w function seems waay out of my league for now. seems there are no simple answer with this. but it sure looks simple.
Aug28-12, 12:19 PM   #9
 
Solve it graphically!!! A picture is worth a thousand words.
Aug28-12, 12:28 PM   #10
 
Recognitions:
Homework Helper Homework Help
Quote by EternityMech View Post
2 if you use calculus it seems atleast according to wolfram. been looking into the lambert w function seems waay out of my league for now. seems there are no simple answer with this. but it sure looks simple.
[itex]x=\cos(x)[/itex] might also look simple, but it too cannot be solved algebraically. They're called transcendental equations.
Aug28-12, 12:48 PM   #11
 
Recognitions:
Science Advisor Science Advisor
Quote by EternityMech View Post
2 if you use calculus it seems atleast according to wolfram. been looking into the lambert w function seems waay out of my league for now. seems there are no simple answer with this. but it sure looks simple.
Yes that is correct, there are two real solutions. For some fairly small positive value of "x", x^5 will exceed 2^x, but it is important to understand that for large "x" that 2^x will eventually exceed x^5 (or any power of x for that matter).

BTW. From my previous post [itex]x e^{-ax/5} = 1[/itex], so [itex](-ax/5) e^{-ax/5} = -a/5[/itex]. Can you see that this is exactly in the form of Lambert's equation. Of course this is only of use to you if you have software or tables or whatever that solves Lambert's equation.
Aug28-12, 01:09 PM   #12
 
Recognitions:
Science Advisor Science Advisor
There is a simple numerical solution you can do on just a basic scientific calculator, and it's particularly easy if it's got an "ans" button and can automatically repeat the previous calculation (many do this by just repeatedly pressing "=" for example).

Rearrange the equation to [itex]x = (2^x)^{0.2}[/itex] and start with an initial "guess" of say x=2. You'll find that repeated iterations of this equation converge to the first solution fairly quickly. This is called "fixed point iteration" btw.

For the second solution you can rearrange it into [itex]x = \log(x^5)/\log(2)[/itex], with some larger initial guess for "x" this should converge fairly quickly to the second solution.

For fixed point iteration you just keep repeating the calculation, each time using the newest value of "x" in the right hand side of the equation.
New Reply