Skip to content

Brent's Minimization Method

Oscar Veliz edited this page Nov 5, 2020 · 7 revisions

For Brent's Rootfinding Method visit here.

Brent's Minimization Method video

The video covering Brent's Minimization Method which combines Golden-section Search and Successive Parabolic Interpolation can be found here https://youtu.be/BQm7uTYC0sg. Example code is given in the BrentJarratt.fsx file, written in F#, it also includes Jarratt's Method and Golden-section Search for comparison. You can run the program via CodingGround. To run the program locally have F# installed then type dotnet fsi BrentJarratt.fsxin the terminal in the directory where BrentJarratt.fsx is saved. I recommend an IDE to edit the program like VS Code.

Reference links: