Section courante

A propos

Section administrative du site

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 Pascal, il peut être intéressant d'effectuer les calculs par nous même:

  1. Function SquareRoot(X:Real):Real;
  2. Var
  3.  A,B,M,XN:Real;
  4. Begin
  5.  If X=0.0Then Begin
  6.   SquareRoot:=0.0;
  7.  End
  8.   Else
  9.  Begin
  10.   M:=1.0;
  11.   XN:=X;
  12.   While XN>=2.0 do Begin
  13.    XN:=0.25*XN;
  14.    M:=2.0*M;
  15.   End;
  16.   While XN<0.5 do Begin
  17.    XN:=4.0*XN;
  18.    M:=0.5*M;
  19.   End;
  20.   A:=XN;
  21.   B:=1.0-XN;
  22.   Repeat
  23.    A:=A*(1.0+0.5*B);
  24.    B:=0.25*(3.0+B)*B*B;
  25.   Until B<1.0E-15;
  26.   SquareRoot:=A*M;
  27.  End;
  28. End;
  29.  
  30.  
  31. Function Ln(x:Real):Real;
  32. Var
  33.  negatif:Boolean;
  34.  fois,i:Integer;
  35.  ajout,savx,xp,quotient,dl:Real;
  36. Begin
  37.  negatif := False;
  38.  fois := 1;
  39.  ajout := 0;
  40.  If x <= 0.0 Then Begin
  41.   Ln:=0;
  42.   Exit;
  43.  End;
  44.  If x < 1.0 Then Begin
  45.   negatif := True;
  46.   x := 1.0 / x;
  47.  End;
  48.  While x >= 10.0 do Begin
  49.   x := x / 10.0;
  50.   ajout := ajout + 2.302585092994046;
  51.  End;
  52.  While x >= 1.1 do Begin
  53.   x := SquareRoot(x);
  54.   fois := fois * 2;
  55.  End;
  56.  x := x - 1;
  57.  savx := x;
  58.  i := 2;
  59.  xp := x * x;
  60.  quotient := (xp / i);
  61.  dl := x - quotient;
  62.  While 1.0E-15 < quotient do Begin
  63.   i := i + 1;
  64.   xp := xp * x;
  65.   dl := dl + (xp / i);
  66.   i := i + 1;
  67.   xp := xp * x;
  68.   quotient := (xp / i);
  69.   dl := dl - quotient;
  70.  End;
  71.  dl := dl * fois;
  72.  dl := dl + ajout;
  73.  If(negatif)Then dl := - dl;
  74.  Ln:=dl;
  75. End;
  76.  
  77. Var
  78.  I:Real;
  79.  
  80. BEGIN
  81.  I:=0;
  82.  While I <= 2.0 do Begin
  83.   WriteLn('Ln(',I,')=',Ln(I));
  84.   I := I + 0.1;
  85.  End;
  86. END.

on obtiendra le résultat suivant:

Ln(0.0)=0.0
Ln(0.1)=-2.302585092994046
Ln(0.2)=-1.6094379124341056
Ln(0.3)=-1.2039728043259357
Ln(0.4)=-0.916290731874156
Ln(0.5)=-0.6931471805599471
Ln(0.6)=-0.5108256237659916
Ln(0.7)=-0.3566749439387316
Ln(0.8)=-0.22314355131420963
Ln(0.9)=-0.10536051565782642
Ln(1.0)=0.09531017980432469
Ln(1.2)=0.18232155679395437
Ln(1.3)=0.2623642644674894
Ln(1.4)=0.3364722366212136
Ln(1.5)=0.40546510810816594
Ln(1.6)=0.47000362924573785
Ln(1.7)=0.5306282510621684
Ln(1.8)=0.5877866649021186
Ln(1.9)=0.6418538861723971

Voir également

Science - Mathématique

Dernière mise à jour : Mardi, le 25 octobre 2016