Solving Inequalities with Exponential Functions

  • Context: Undergrad 
  • Thread starter Thread starter verty
  • Start date Start date
  • Tags Tags
    Inequality
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
Messages
2,190
Reaction score
200
I'm wondering how to solve an inequality like this:

x + 3^x < 4

I can see that it is the sum of the identity function and an exponential function. I can see that it is monotone increasing because each of those is. I therefore know that it crosses y=4 at only one x-value (call it x_1) and I know the solution will be x < x_1.

So I need to solve for x in x + 3^x = 4, how would I do that? I see I could draw the graph and read off the value, which I can see is x_1 = 1, but is there a way to calculate it?

Thank you for any clarification.
 
Mathematics news on Phys.org
Draw a graph first, let the function be y = x + 3^x - 4 and find where this graph cuts the x-axis (That will satisfy the Ineq, Find an approximate area where the graph cuts the axis, so accuracy is paramount.). From here you should have an idea of the kind of answer you'll need. To find a approximate solution, I'd use Newton's method which is:
x_n+1 = x_n - F(x_n)/F'(x_n)
You can take the first value of x_n from the graph you've drawn.
 
Last edited:
In general, you can't solve equations like a^x+x=b in a closed form, although you can approximate the solution to any degree of accuracy. However in this case, it's easy to check that the solution is exactly x=1.