1回代数方程式
>>fsolve
代数方程式の解 f(x)=0 を数値的に求める
→要するにルートなんとかでなく、何点ナンボみたいな感じで出す
二分法(bisection method)
ニュートン法(Newton's methos)の考え方と例を説明し、
収束性(convergency)
安定性(stability)
>>>>>>>>>>>exp
func:=x->x^2-4*x+1;
solve(func(x)=0,x);
>>2+√3,2-√3
と出るが
fsolve(func(x)=0,x);
>>0.67999...,3.732...