Solve R Root with Newton's Method: n ≥2, R>0

In summary, the question asks to use Newton's method with \(f(x)=1-\frac{R}{x^n}\) to find \(R^{1/n}\). This method requires an iteration formula of \(x_{k+1}=x_k-\frac{(x_k^n-R)x_k}{Rn}\). However, the question does not specify where to go from this formula, resulting in two different iterative formulas for the same problem. The first formula is \(x_{i+1}=x_i-\frac{((x_0)^n - R)}{n(x_0 ^{n-1})}\) and the second one is \(x_{i+1}=x_i - \frac{x_0
  • #1
house2012
2
0
Hey guys, need some help with this question. I am stuck and don't know what to do.

Q: Show that using Newton's method to $$1-\frac{R}{x^n}$$ and to $$x^n-R$$ for determining $$(R)^{\frac{1}{n}}$$ results in 2 similar, but different iterative formulas, with $$n \ge 2$$ and $$R >0$$

Thanks for your help guys!
 
Mathematics news on Phys.org
  • #2
First the wording of this question makes it very difficult to understand what is required. I will assume that you are asked to use Newton's method with:

\[f(x)=1-\frac{R}{x^n}\]

to find \(R^{1/n}\).

First applying Newton's method to \(f(x)\) if it works finds a solution to \(f(x)=0\).

Putting \(f(x)=1-\frac{R}{x^n}=0\) rearranges to \(\frac{R}{x^n}=1\) or \(x^n=R\) so \(f(x)\) is of the correct form for finding \(R^{1/n}\).

Now Newton's iteration to find a root of \(f(x)=0\) is:

\[x_{k+1}=x_k-\frac{f(x_k)}{f'(x_k)}\]
which in this case reduces to:

\[x_{k+1}=x_k-\frac{(x_k^n-R)x_k}{Rn}\]

Now the question as asked does not indicate where to go from here.

CB
 
Last edited:
  • #3
the itirating
\[ x_{i+1} = x_i - \frac{f(x_i)}{f'(x_i)} \]

for first one

\[ x_1 = x_0 - \frac{((x_0)^n - R)}{n(x_0 ^{n-1})} \]

second one

\[ x_1 = x_0 - \frac{1 - \frac{R}{x_0 ^{n}} }{ \frac{-nR}{x_0 ^{n+1}}}= x_0 - \frac{x_0(x_0 ^n-R)}{-nR} \]

these are different
 

FAQ: Solve R Root with Newton's Method: n ≥2, R>0

What is Newton's Method?

Newton's Method is an iterative mathematical algorithm used to approximate the roots of a function. It involves using the tangent line of a function at a given point to find a better estimate of the root.

How does Newton's Method work?

To use Newton's Method, you first choose an initial guess for the root of the function. Then, you use the derivative of the function to calculate the slope of the tangent line at that point. The x-intercept of the tangent line is then used as the next guess for the root. This process is repeated until the desired level of accuracy is achieved.

What is the purpose of using Newton's Method on a function with n ≥ 2 and R > 0?

Newton's Method is used to find the roots of a function, which are the values of x that make the function equal to zero. In the case of a function with n ≥ 2 and R > 0, this means finding the values of x that make the function have at least two solutions and a positive value. This can be useful in solving mathematical problems or analyzing complex systems.

Are there any limitations to using Newton's Method?

Yes, there are some limitations to using Newton's Method. It may not always converge to the desired root, especially if the initial guess is far from the actual root. It also requires the function to be differentiable, which means it must have a well-defined tangent line at each point.

Can Newton's Method be used for functions with multiple variables?

Yes, Newton's Method can be extended to functions with multiple variables, but it involves calculating the gradient of the function and using partial derivatives to find the tangent plane. This process can be more complex and time-consuming compared to using Newton's Method for single-variable functions.

Similar threads

Replies
6
Views
2K
Replies
9
Views
2K
Replies
7
Views
2K
Replies
1
Views
10K
Replies
1
Views
10K
Replies
7
Views
2K
Replies
21
Views
3K
Back
Top