[问题] Codewars 6级数学题(可用Swift)

楼主: pmove (金疾柠檬)   2022-12-13 19:23:39
今天尝试用Swift解难度6级的Floating-point Approximation (I):
https://www.codewars.com/kata/58184387d14fc32f2b0012b2
结果只有测试资料Pass, 传送过去就Fail了。
想了一个下午,最后只好看解答,
看了解答,我还是想不出来…为什么?有人能明讲,
这题解答的原理是什么吗?
题目很短,我顺便Po在下面:
Consider the function
f: x -> sqrt(1 + x) - 1 at x = 1e-15.
We get: f(x) = 4.44089209850062616e-16
or something around that, depending on the language.
This function involves the subtraction of a pair of similar numbers when x is
near 0 and the results are significantly erroneous in this region. Using pow
instead of sqrt doesn't give better results.
A "good" answer is 4.99999999999999875... * 1e-16.
Can you modify f(x) to give a good approximation of f(x) in the neighborhood
of 0?
Note:
Don't round or truncate your results. See the testing function in Sample
Tests:.

Links booklink

Contact Us: admin [ a t ] ucptt.com