About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
December 2019 - Solution
The problem is quite old, as you can see in papers from more than a century ago.
The best solution we got with 15 operations is 0.3558537121*x*x+0.8756099212-0.342263605/(x*x+0.521238162)-0.0058778217/(x*x+0.03522466135) -0.00006182761867/(x*x+0.00131063), which results in an MSE of ~1.8033e-07.
The solution with the fewest number of operations (only 7) is 0.497+0.561*x*x-0.0467/(0.1025+x*x), which results in an MSE of ~7.8e-05.
A nice solution we got from Aviv Nisgav computes the sqrt(x*x) by using the Newton-Raphson method with an initial guess of 0.3 and 3 iterations. After rearranging the terms, we get
0.1875-0.0135/(0.09+x^2)+x^2(0.4166667+0.6/(0.45+x^2-0.0324/(0.09+x^2))), which results in an MSE of ~3.7e-05.