FindInstance[1 == (c + d Sqrt[3]), {c, d}, Integers]
Why does this not return c = 1 and d = 0 in version 5.2?
It says that it can't find a solution.
In[1]:= FindInstance[c + d Sqrt[3.] == 1, {c, d}, Integers] Out[1]= {{c -> 1, d -> 0}}
Thank you. I see now that using the floating point clears it up.