From e8fac13006dadb0508d9ff17b5a9fca3e6c760ac Mon Sep 17 00:00:00 2001 From: Andrew Lorimer Date: Thu, 18 Oct 2018 17:08:59 +1100 Subject: [PATCH] newtonian method --- methods/antidiff.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/methods/antidiff.md b/methods/antidiff.md index 05db62a..b564ad3 100644 --- a/methods/antidiff.md +++ b/methods/antidiff.md @@ -13,4 +13,12 @@ $\int kf(x) \cdot dx = k \int f(x) \cdot dx$, where $k \in \mathbb{R}$ Kinematics - straight line motion of a particle -Instantaneous velocity - dx/dt \ No newline at end of file +Instantaneous velocity - dx/dt + +## Newton's method + +$$x_{n+1}=x_n - {f(x_n) \over f^\prime(x_n)}$$ + +or + +$$x_1=x_0 - {f(x_0) \over f^\prime(x_0)}$$ \ No newline at end of file -- 2.49.0