This is a free preview. For full access
Applications of Differentiation
Newton’s Method for Finding Roots
Description
Newton’s Method is an iterative way to find the roots of real-valued, differentiable functions. A root is the value of x that makes a function equal to zero. This method is useful when an exact algebraic answer is hard to find.
The process starts with an initial guess. Newton’s Method then uses t...
Show More
Transcript
ニュートン法は、実数値かつ微分可能な関数の近似根を求める反復的手法です。
標準的な代数的手法では複雑すぎる非線形方程式を解くのに役立ちます。
例えば、ニュートン法は自動車ローンの返済をモデル化する非線形方程式から金利を推定できます。これらの式は y が x の f に等しいと表され、式を展開するためにしばしば図示されます。
このプロセスは、根の大まかな推定に基づく初期の推測から始まります。
推測された点では、関数の傾きを用いて接線を描きます。この直線の x切片は新しい推定値となり、実際の根に視覚的により近くなります。
この新しい推定値は線形近似から得られます。これは初期推定値から関数の値をその推定値での微分で割っ...
Show More