LoginSignup
4
1

More than 5 years have passed since last update.

非線形方程式の数値解法

Last updated at Posted at 2018-10-11

概要

非線形方程式とは

変数が1次の方程式を線形方程式、それ以外を非線形方程式という。
例えば、
$$x^2+3x+2=0  x+\sqrt{x}+4=0$$$$\sin(x)-x=0  exp(x)+x=0$$
みたいな。

非線形方程式を解く

非線形方程式 $f(x)=0$ の解 $x=\alpha$ を求めたい。
解 $\alpha$ は、一般的には解析的に求めるのは困難。
なので数値計算を使う。qiita-num-1.png

注意

  1. 誤差は0にならない
  2. 解が複数個ある場合でも、一度に見つかる解は一つ

代表的な解法

二分法
Newton法
割線法
はさみうち法

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1