Tagged articles
3 articles
Page 1 of 1
Python Programming Learning Circle
Python Programming Learning Circle
Dec 11, 2019 · Fundamentals

Master Python Optimization: Bisection, Fibonacci, Golden Section & Newton Methods

This article walks through several Python optimization techniques—including the bisection, three‑point division, Fibonacci, golden‑section, quadratic interpolation, and Newton methods—providing clear code examples, explanations of return statements, variable type handling, and debugging tips.

Bisection MethodGolden SectionNewton's method
0 likes · 12 min read
Master Python Optimization: Bisection, Fibonacci, Golden Section & Newton Methods
Programmer DD
Programmer DD
Dec 17, 2018 · Fundamentals

How to Compute √2 Efficiently: Binary Search, Newton’s Method, and C Tricks

Learn multiple techniques to calculate the square root of 2—including binary search, Newton’s iteration, and a clever C library implementation—through clear explanations, step‑by‑step illustrations, and full JavaScript and C code examples that reveal the underlying mathematics and performance considerations.

Binary SearchNewton's methodNumerical Methods
0 likes · 4 min read
How to Compute √2 Efficiently: Binary Search, Newton’s Method, and C Tricks
Hulu Beijing
Hulu Beijing
Jan 2, 2018 · Fundamentals

Master Classic Optimization Algorithms: Direct vs Iterative Methods Explained

This article introduces classic optimization algorithms, distinguishing direct methods that require convexity and closed‑form solutions from iterative first‑ and second‑order methods, and explains their applicability, underlying theory, and key references for solving smooth unconstrained problems.

Newton's methodalgorithm fundamentalsconvex optimization
0 likes · 8 min read
Master Classic Optimization Algorithms: Direct vs Iterative Methods Explained