from math import sqrt
a=1e-8
b=10
c=1e-8
x1 = ((-b)-sqrt((b**2)-(4*a*c)))/(2*a)
x2 = ((-b)+sqrt((b**2)-(4*a*c)))/(2*a)
print 'x1 = {}'.format(x1)
print 'x2 = {}'.format(x2)
print (4*a*c)
print (sqrt(b**2-4*a*c))
print b**2
print 2*a
更精確的十進制值當我運行程序,這將返回:我怎樣才能在Python
x1 = -1e+09
x2 = 0.0
4e-16
10.0
100.0
2e-08
我需要的是X2等於-1e-9。
的問題似乎是與
sqrt((b**2)-(4*a*c))
因爲它給出了10,結果,顯然是因爲4 *(10^-8)*(10^-8)幾乎等於0,和被python視爲0。
這導致:
sqrt((b**2)-(4*a*c)) = sqrt(b**2) = sqrt(10**2) = 10
任何幫助,將不勝感激