/*************************************************************************************************************************************/ /* */ /* C A L C U L D E S P R E M I E R E S D E C I M A L E S D E ' pi ' : */ /* */ /* */ /* Nota sur la duree d'execution : */ /* */ /* LACT1A : */ /* */ /* 20240508083059 00:00:32 '$xrp/Decimales_Base10_DeuxPi_____10000' */ /* */ /* */ /* Author of '$xtb/Decimales_Base10_DeuxPi.01' : */ /* */ /* Jean-Francois COLONNA (LACTAMME, 20240508082217). */ /* */ /*************************************************************************************************************************************/ scale = 10000; /* Nombre de decimales. */ 2*(16*a(1/5)-4*a(1/239)); /* Calcul de '2.pi' a l'aide de la formule : */ /* */ /* 1 1 */ /* pi = 2.(16.arctg(---) - 4.arctg(-----)) */ /* 5 239 */ /* */ /* ce qui demande evidemment la librairie "--mathlib". */ quit;