Does the Numerical Solution for the Equation Converge?

  • Thread starter Thread starter atomqwerty
  • Start date Start date
atomqwerty
Messages
89
Reaction score
0

Homework Statement



Let be the equation

n - m - a*r - 5*log(r) = 0


Homework Equations



We proceed by rewritting

n - m - a*r = 5*log(r)

Now we have separate equations, which variables we identificate as

n - m - a*x = 5*log(y)

Since we need a numerial solution, we apply numerical methods, like
c
x=0 -> y0
x=y0 -> y1
x=y1 -> y2
...

The question is to probe that the solution converges. I don't know how to satrt this!

Thanks in advance!
 
Physics news on Phys.org
so what are you trying to do

find the zeros wrt r of:
n - m - a*r - 5*log(r) = 0...?
 
lanedance said:
so what are you trying to do

find the zeros wrt r of:
n - m - a*r - 5*log(r) = 0...?

I'm trying to figure out a numerical solution for this particular equation, and I've been asked to demonstrate that the procudure I wrote down above converges, i.e, that gives a non-infinite solution.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top