December 2017
Intermediate to advanced
386 pages
10h 42m
English
Even the algebraic solvers coded in the SymPy libraries share this defect, as the following example shows:
In [5]: from sympy import symbols, solveIn [6]: x = symbols('x', real=True)In [7]: solve(a*x**2 + b*x + c)Out[7]: [1.00000000000000, 9999999999.00000]
To avoid having to second-guess the accuracy of our solutions ...
Read now
Unlock full access