엔지니어가 되고 싶은 공돌이
13. 테일러 수치미분법(Talyor’s Numerical Differentiation) 본문
Mathematics/Numerical Analysis
13. 테일러 수치미분법(Talyor’s Numerical Differentiation)
Geca 2024. 7. 12. 14:12
13. 1. 테일러 수치미분법(Talyor’s Numerical Differentiation)
- 전향수치미분식(Forward Diffenence Formula): {f(x + h) – f(x)} / h -> O(h).
- 후향수치미분식(Backward Diffenence Formula): {f(x) – f(x - h)} / h -> O(h).
- 중앙수치미분식(Central Diffenence Formula): {f(x + h) – f(x - h)} / 2h -> O(h2).
중앙수치미분식으로 구한 근사값이 나머지 두 방법보다 더 빨리 참값에 근접한다.
- h의 크기를 계속 줄여나가면서 근사값을 참값에 근접시킨다.
- f(x)를 테일러 정리로 표현하면
- 2차 도함수의 중앙수치미분식(Central Diffenence Formula of Second Derivative)
{ f(x + h) – 2f(x) + f(x - h) } / h2.
'Mathematics > Numerical Analysis' 카테고리의 다른 글
14. 리차드슨 외삽법, 수치적분(Richardson Extrapolation and Numerical Integration) (0) | 2024.07.12 |
---|---|
12. 스플라인 함수(Spline Function) (1) | 2024.07.12 |
11. 뉴턴의 분할차분법(Newton’s Interpolator Divided Difference Formula) (0) | 2024.07.12 |
10. 라그랑주 보간법(Lagrange Interpolation) (0) | 2024.07.12 |
09. 비선형방정식 -2 (Non-Linear Equation - 2) (2) | 2024.07.12 |
Comments