Skip to content

Fixed Point Iteration

Oscar Veliz edited this page Jul 13, 2019 · 11 revisions

Fixed Point Iteration video Fixed Point Iteration QA video

A playlist of all videos related to Fixed Point Iteration can be found here

Roots of a Function

There are two videos covering Fixed Point Iteration for finding the root of a single equation. The Original and the Q&A. The topic is also expanded upon in Steffensen's Method with Aitken's Δ² (code: here documentation: here) and Wegstein's Method (code: here documentation: here).

Steffensen's Method video Wegstein's Method video

Solving Systems of Equations

Fixed Point Iteration System of Equations video Generalized Aitken-Steffensen video

Solving linear and nonlinear systems with Fixed Point Iteration is discussed in this video with code located in FixedPointAitkenSteffensen.rs. The video covering Generalized Aitken-Steffensen also uses the same code. This program is written in Rust and can be run online via CodingGround. To compile and run locally have Rust installed and in your Path setup then using the command line in the same directory where you've saved the program type rustc FixedPointAitkenSteffensen.rs and then ./FixedPointAitkenSteffensen.

Clone this wiki locally