Is There a Purely Mathematical Solution to the Equation 5^x + 9^x = 92?

  • Context: Undergrad 
  • Thread starter Thread starter Tron3k
  • Start date Start date
Click For Summary

Discussion Overview

The discussion revolves around the equation 5^x + 9^x = 92, specifically exploring whether it can be solved purely mathematically, as opposed to using numerical methods. Participants consider various approaches, including algebraic and analytical methods, as well as the potential use of the Lambert W function.

Discussion Character

  • Exploratory, Technical explanation, Debate/contested, Mathematical reasoning

Main Points Raised

  • One participant suggests that numerical methods are the only way to solve the equation, while another argues that numerical solutions can be considered mathematical solutions.
  • Some participants propose the use of the Lambert W function as a possible method for finding a solution, though its effectiveness is questioned.
  • A participant raises the idea of using logarithms to solve the equation but expresses doubt about its feasibility.
  • Another participant discusses the concept of finding an inverse function for f(x) = 5^x + 9^x and wonders if it can be expressed as an infinite series.
  • There is a mention of Newton's method as a viable numerical approach, with one participant providing a specific formulation for improving approximations to the solution.
  • Concerns are raised about the existence of a solution in terms of ordinary functions, with some participants expressing skepticism about finding a closed-form solution.
  • Discussion includes various numerical root-finding methods, such as the Bisection Method and the Secant Method, with explanations of their characteristics and convergence behaviors.

Areas of Agreement / Disagreement

Participants do not reach a consensus on whether a purely mathematical solution exists. There are multiple competing views regarding the use of numerical methods versus analytical approaches, and the discussion remains unresolved.

Contextual Notes

Participants express uncertainty about the applicability of certain mathematical methods and the limitations of various approaches to solving the equation. There is also a recognition that the problem may involve advanced concepts not yet familiar to all participants.

Tron3k
Messages
45
Reaction score
0
My teacher told us in class that the only way we can solve this equation is by using numerical methods (ie. graphing calculator). I was wondering if anyone would be able to solve it mathematically. I tried plugging it into Mathematica but it couldn't solve it.

[tex]5^x + 9^x = 92[/tex]
 
Mathematics news on Phys.org
I would say that solving numerically is solving mathematically! Perhaps you meant "algebraically" or "analytically". I suspect you could use the Lambert W function but you might not consider that any "better" than doing it numerically.
 
This is just a wild guess, but can it be solved by using logs?
 
I tried, but I don't think so.

HallsOfIvy: Well, you know what I mean. I'd like to have a non-infinite mathematical expression for x. I suppose it's probably impossible to do that. I'll look up the Lambert W function.

If it helps, an equivalent problem is the following:

Given [itex]f(x) = 5^x + 9^x[/itex], find [itex]f^{-1}(x)[/itex].

I wonder if there is an expression for [itex]f^{-1}(x)[/itex] in the form of an infinite series.
 
I looked up the Lambert W function. Funny, it's similar to what I just said above about the inverse function. Well, I'll see if I can get it to work.
 
Hello to you.

Hi there. Well, I'm at school right now... if I have time, I'll
show my answer. =) I hope you don't need it at a particular time.
 
Originally posted by Tron3k
My teacher told us in class that the only way we can solve this equation is by using numerical methods (ie. graphing calculator)...[tex]5^x + 9^x = 92[/tex]

Your teacher is right, but I think the distinction between analytic and numeric solutions is not so solid as you might think. Consider the equation

[tex]\sin(x)=0.6[/tex]

One tends to think that this is solvable in closed form as [tex]\inline{x=\sin^{-1}{.6}}[/tex]. But why? because most calculators have an arcsin button? If you were to do it by hand, you would be hard-pressed to find a good numerical approximation. Conversely, it would be no harder to build a calculator with a (admittedly useless) [tex]\inline{f^{-1}}[/tex] button where [itex]f(x) = 5^x + 9^x[/itex] than to build one with an arcsin button. How? By Newton's method: Consider the function

[tex]F(x)=x-(5^x+9^x){\log(5^x+9^x)-\log(92)\over \log(5)5^x+\log(9)9^x}[/tex]

Starting with a first guess say x=2, each application of [itex]F(x)[/itex] gives a better approximation to the solution. For example [itex]F(F(2))[/itex] already gives the solution to 11 places. Apply F once more and you get the solution to 22 places.

(Edit: it's way faster yet if you first take the log of both sides of the original equation.)
 
Last edited:
Yep, I understand what you mean. Actually, I went through the same kind of thought process as you. I thought about the sine function. I was just hoping there would be a nice solution to the problem in terms of usual functions (not weird ones like the inverse of 5^x + 9^x), but I suppose there isn't. I wonder if that franz32 guy actually got anywhere.

I suppose that's the key: finding solutions in terms of ordinary functions. For example, the quintic equation can only be solved using the inverse of the function x^5 + x (well, that's one way to solve it).

So now I can reformulate my original question: Is there any solution to that equation in terms of ordinary functions? And I suppose the answer is no.
 
Sorry for waiting...

Hello there. Honestly, I found out that this is not as simple as it is. solving this analytically may be difficult. if you know calculus, it will be easy if you are going to use Newton's method (which I haven't encountered yet in my university). If you are not familiar with calculus, then you will need to use some
root-finding method such as the Bisection Method, the Secant Method,
or the False Position Method. I believe that "krab" has the point. =)

First of all, when you say "linear interpolation" for finding roots, there are actually two methods that use linear interpolation: "False Position" (or, in the Latin wording, "Regula Falsi"), and the Secant Method. False Position always brackets the root. That is, at each stage, the method produces two numbers a_n and b_n, so that the root r is between them: a_n < r < b_n. At the next stage, it replaces one of the numbers a_n and b_n with a new value and leaves the other value unchanged, and the new values a_(n+1) and b_(n+1) still bracket the root. The Secant Method produces a sequence of numbers that do not necessarily bracket the root.

Your first criterion might be more useful for the False Position
method, but you are correct that for certain functions, it will tend
to be only one endpoint that moves, and the method will converge very
slowly, by that criterion. The second and third criteria would be more appropriate for the Secant Method, but again, there are functions for which the second criterion will produce very slow convergence.

The third criterion can be useful, but it depends upon whether you are primarily interested in a value that makes the function small, or
whether you really need the correct value of the (exact) zero. If the
root is a multiple one, so that the function is roughly quadratic or
cubic in (x-r), where r is the exact root, then the function will be
very flat near the root. For example, x might be .01 units from r, but f(x)~10^(-6), so relatively poor approximations of the root r will produce very small function values.

The best one to use depends upon what you are trying to find: a good approximation to the root, or just a value x which produces a small f(x).

Well, that's it. Sorry, I thought it's an easy one... I lately realized that this involves numerical analysis, which I'm going to take up 2 years from now.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
7
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
4
Views
2K