All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
Total Number of Real Solutions (Posted on 2023-12-28) Difficulty: 3 of 5
Let N be a real number.
Determine the total number of solutions to this equation:

N+53N+2 =1

No Solution Yet Submitted by K Sengupta    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution the number, and the solution Comment 2 of 2 |
Graphing both y=5^(3*x+2) and y = 1-x shows one point of intersection, and it's between x=-1 and x=0.

Program:

  x = linspace(-1,0,500);
  y1 = 5.^(3.*x+2);
  y2=1-x;

  figure
  plot(x,y1 )
  grid
  hold on
  plot(x,y2)
  axis equal

  
  
  low=-1; high=   0 ; 
  
for iter=1:30
  prev=0;
for x=low:(high-low)/10:high
  v=x+5^(3*x+2)-1;
  % disp([x v])
  if sign(v)~=sign(prev) && prev~=0
    break
  end
  prev=v;
  prevx=x;
end
low=prevx; high=x;
disp([x v])
if prev==v
  break
end 
end


first plots the graph, then (added after looking at the graph) homes in on the solution, x=-0.572865929453477, or rather in the puzzle's nomenclature N = -0.572865929453477.

  Posted by Charlie on 2023-12-28 09:17:28
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (9)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information