| 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?
|
| 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:
|
2^x=x^5 anyway to solve this?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:
|
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 |
|
|
|
| Aug28-12, 12:00 PM | #7 |
|
Recognitions:
|
|
| Aug28-12, 12:16 PM | #8 |
|
|
|
| Aug28-12, 12:19 PM | #9 |
|
|
Solve it graphically!!! A picture is worth a thousand words.
|
| Aug28-12, 12:28 PM | #10 |
|
Recognitions:
|
|
| Aug28-12, 12:48 PM | #11 |
|
Recognitions:
|
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:
|
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 |