Small Solver Program
|
02-15-2019, 09:16 PM
(This post was last modified: 02-15-2019 09:31 PM by Albert Chan.)
Post: #6
|
|||
|
|||
RE: Small Solver Program
(02-15-2019 06:26 PM)Thomas Klemm Wrote:(02-15-2019 12:07 AM)Albert Chan Wrote: It would be nice if we can temper the oscillation, or slow convergence. Amazingly, my rate formula is same as Aitken extrapolation formula ! ![]() Assuming we have 3 values, x0,x1,x2 and tried to guess where it should end up. My rate analysis: r = (x2-x1)/(x1-x0) = Δx1 / Δx0 We need this for the proof: (Δx0)² = ((Δx0 - Δx1) + Δx1)² = (Δx0 - Δx1)² + 2 * Δx1 (Δx0 - Δx1) + (Δx1)² If same trend continue, where it will ends up = x0 + Δx0 * 1/(1-r) = x0 + (Δx0)² / (Δx0 - Δx1) = x0 + (Δx0 - Δx1) + 2 * Δx1 + (Δx1)² / (Δx0 - Δx1) = x0 + (x1-x0) + (x1-x2) + 2*(x2-x1) − (Δx1)² / (Δx1 - Δx0) = x2 − (Δx1)² / (Δx1 - Δx0) |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)