Après avoir effectué des recherches dans de nombreux livres comme Scientific Pascal, Dictionnaire mathématique,..., je n'ai jamais trouvé aucun livre fournissant une réponse correct du calcul du logarithme, outre le projet GNU (HaypoCALC). Bien qu'il existe de nombreuses fonctions de logarithme du langage Delphi, il peut être intéressant d'effectuer les calculs par nous même :
- Program LogSamples;
-
- {$APPTYPE CONSOLE}
-
- Uses SysUtils;
-
- Function SquareRoot(X:Real):Real;
- Var
- A,B,M,XN:Real;
- Begin
- If X=0.0Then Begin
- SquareRoot:=0.0;
- End
- Else
- Begin
- M:=1.0;
- XN:=X;
- While XN>=2.0 do Begin
- XN:=0.25*XN;
- M:=2.0*M;
- End;
- While XN<0.5 do Begin
- XN:=4.0*XN;
- M:=0.5*M;
- End;
- A:=XN;
- B:=1.0-XN;
- Repeat
- A:=A*(1.0+0.5*B);
- B:=0.25*(3.0+B)*B*B;
- Until B<1.0E-15;
- SquareRoot:=A*M;
- End;
- End;
-
- Function LogNip(x:Real):Real;
- Var
- negatif:Boolean;
- fois,i:Integer;
- ajout,savx,xp,quotient,dl:Real;
- Begin
- negatif := False;
- fois := 1;
- ajout := 0;
- If x <= 0.0 Then Begin
- LogNip:=0;
- Exit;
- End;
- If x < 1.0 Then Begin
- negatif := True;
- x := 1.0 / x;
- End;
- While x >= 10.0 do Begin
- x := x / 10.0;
- ajout := ajout + 2.302585092994046;
- End;
- While x >= 1.1 do Begin
- x := SquareRoot(x);
- fois := fois * 2;
- End;
- x := x - 1;
- savx := x;
- i := 2;
- xp := x * x;
- quotient := (xp / i);
- dl := x - quotient;
- While 1.0E-15 < quotient do Begin
- i := i + 1;
- xp := xp * x;
- dl := dl + (xp / i);
- i := i + 1;
- xp := xp * x;
- quotient := (xp / i);
- dl := dl - quotient;
- End;
- dl := dl * fois;
- dl := dl + ajout;
- If(negatif)Then dl := - dl;
- LogNip:=dl;
- End;
-
- Var
- I:Real;
-
- BEGIN
- I:=0;
- While I <= 2.0 do Begin
- WriteLn('Ln(',I:1:1,')=',LogNip(I):1:10);
- I := I + 0.1;
- End;
- END.
on obtiendra le résultat suivant :
Ln(0.0)=0.0000000000Ln(0.1)=-2.3025850930
Ln(0.2)=-1.6094379125
Ln(0.3)=-1.2039728043
Ln(0.4)=-0.9162907318
Ln(0.5)=-0.6931471806
Ln(0.6)=-0.5108256238
Ln(0.7)=-0.3566749440
Ln(0.8)=-0.2231435513
Ln(0.9)=-0.1053605157
Ln(1.0)=0.0000000000
Ln(1.1)=0.0953101798
Ln(1.2)=0.1823215568
Ln(1.3)=0.2623642645
Ln(1.4)=0.3364722366
Ln(1.5)=0.4054651081
Ln(1.6)=0.4700036292
Ln(1.7)=0.5306282511
Ln(1.8)=0.5877866649
Ln(1.9)=0.6418538862
Voir également
Dernière mise à jour : Dimanche, le 17 août 2014