sqrtre2
Sqrtre2 is a numerical function designed to compute the principal square root of a nonnegative real input with enhanced convergence efficiency. It is named to reflect its use of a second-order refinement on top of a basic Newton iteration, yielding faster convergence toward sqrt(x) than a simple Newton step alone.
Definition and method: For x ≥ 0, sqrtre2(x) returns an approximation to sqrt(x). The algorithm uses an
Properties and behavior: The combination provides cubic convergence once near the root, improving accuracy rapidly. It
Implementation and use: Sqrtre2 is used in numeric libraries where a fast and accurate sqrt is needed
See also: sqrt, Newton-Raphson method, Halley’s method, cubic convergence.