由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Science版 - Re: 给偶个例子Newton/secaut方法不能解的方程?
相关主题
一个关于多边形的问题 ZZRe: 请教:有什么软件能解微分方程组的么?
Re: 时间常数Re: 数学作业--偶的想法之更正版
谁来推荐几本有关积分方程的书?questions
hanzo问题的解Re: How to solve this equation?
hanzo---RK算法Re: 求教相速度和群速度
Re: 请高手帮忙解一个方程Re: 非线性方程求根一问
Re: 谁能谈谈微分方程组的稳定性的问题?Re: 土土一问(about chaos theory)
[转载]Mathematica函数及使用方法(5)Re: 大侠们帮我解方程吧
相关话题的讨论汇总
话题: newton话题: method话题: try话题: solvable话题: secaut
进入Science版参与讨论
1 (共1页)
w**n
发帖数: 88
1
Try f(x)=x^(1/3)
w**n
发帖数: 88
2
Newton's Method fails when
(i). f(x[n])=0;
(ii).| x[n+1]-x[n]| or f'(x[n])/f(x[n] gets larger instead of smaller as n
increases. No matter how we choose the estimate.
w**n
发帖数: 88
3

some comments :
1.for (i) x[n] is not the root , in your example , x=0 is happen to be the root
so newton's method just stucks in the root.
2. (i), (ii) have the relation "or" instead of "and".
3.for case (i) you may change the test point to skip the x[n] , but for case
(ii) there is no way to apply the newton's method correctly.

【在 w**n 的大作中提到】
: Newton's Method fails when
: (i). f(x[n])=0;
: (ii).| x[n+1]-x[n]| or f'(x[n])/f(x[n] gets larger instead of smaller as n
: increases. No matter how we choose the estimate.

m*****e
发帖数: 4193
4
基本上和Newton一样,但是不是用x(i)的切线,而是采用x(i)和x(i+1)的连线。
所以需要两个初始值。
w**n
发帖数: 88
5
Are you sure you are using "Pure Newton Mehtod", becuause if you mixed
the bisection with newton method , there will be no problem for any solvable
case.
Here is the proof that f(x)=x^(1/3 ) is not solvable with newton's method

x[n+1]=x[n]-f(x[n])/f'(x[n])
=x[n]-( x[n]^(1/3) )/ ( (1/3)*x[n]^(-2/3) )
=x[n]-3x[n]
=-2x[n]
This implies that | x[n+1]-x[n] |=3x[n]
Hence Newton's Method fails.


【在 m*****e 的大作中提到】
: 基本上和Newton一样,但是不是用x(i)的切线,而是采用x(i)和x(i+1)的连线。
: 所以需要两个初始值。

w**n
发帖数: 88
6
Check your code , make sure you are testing simple newton method. I have
tried on my computer , newton's method definetely failed on x^(1/3)=0

【在 m*****e 的大作中提到】
: 基本上和Newton一样,但是不是用x(i)的切线,而是采用x(i)和x(i+1)的连线。
: 所以需要两个初始值。

1 (共1页)
进入Science版参与讨论
相关主题
Re: 大侠们帮我解方程吧hanzo---RK算法
Re: 点到曲面的最小距离?Re: 请高手帮忙解一个方程
请教积分方程。救命!Re: 谁能谈谈微分方程组的稳定性的问题?
Re: 非稳态问题之2: criteria for quasi--steady[转载]Mathematica函数及使用方法(5)
一个关于多边形的问题 ZZRe: 请教:有什么软件能解微分方程组的么?
Re: 时间常数Re: 数学作业--偶的想法之更正版
谁来推荐几本有关积分方程的书?questions
hanzo问题的解Re: How to solve this equation?
相关话题的讨论汇总
话题: newton话题: method话题: try话题: solvable话题: secaut