Newton's Method with Python

Описание к видео Newton's Method with Python

Note errors:
(1) Newton's formula is: x_{i+1} = x_i MINUS f(x_i)/f'(x_i). The code is right, the description is wrong.
(2) The approximate relative error should be in percent, so the formula in line 47 should be:
approxRelError[i+1]=abs(approxError[i+1]/xiPlus1)*100

Комментарии

Информация по комментариям в разработке