What is the maximum precision I can squeak out of a variable?
Is it just double precision?
I need to represent this number:
Phi = 1·61803 39887 49894 84820 45868 34365 63811 77203 09179 80576 ...
from:
Phi = (SQRT(5) + 1)/2
FYI - then I need to use Phi to find a FIB number with:
Fibn = Phi^n - (-1^n) / Phi^n / SQRT(5)
------------------
Kind Regards
Mike
Is it just double precision?
I need to represent this number:
Phi = 1·61803 39887 49894 84820 45868 34365 63811 77203 09179 80576 ...
from:
Phi = (SQRT(5) + 1)/2
FYI - then I need to use Phi to find a FIB number with:
Fibn = Phi^n - (-1^n) / Phi^n / SQRT(5)
------------------
Kind Regards
Mike
Comment