format long % show all the digits
a = 1; b = -(1e6+1e-6); c = 1;
x1 = (-b + sqrt(b^2-4*a*c)) / (2*a)
x1 =
1000000
x2 = (-b - sqrt(b^2-4*a*c)) / (2*a)
x2 =
1.000007614493370e-06
The first value is correct to all stored digits, but the second has fewer than six accurate digits:
-log10( abs(1e-6-x2)/1e-6 )
ans =
5.118358987126217