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

  1. FOR I = 0.0 TO 2.0 STEP 0.1
  2.     PRINT "Ln("; I ;")=" ; Ln(I)
  3. NEXT
  4.  
  5. FUNCTION SquareRoot(X)
  6.     IF X = 0.0 THEN
  7.       SquareRoot = 0.0
  8.       EXIT FUNCTION
  9.     END IF
  10.     M = 1.0
  11.     XN = X
  12.     WHILE XN >= 2.0
  13.       XN = 0.25 * XN
  14.       M = 2.0 * M
  15.     WEND
  16.     WHILE XN < 0.5
  17.       XN = 4.0 * XN
  18.       M = 0.5 * M
  19.     WEND
  20.     A = XN
  21.     B= 1.0 - XN
  22.     DO
  23.        A = A * (1.0 + 0.5 * B)
  24.        B = 0.25 * (3.0 + B) * B * B
  25.     LOOP UNTIL B < 0.000000000000001
  26.     SquareRoot = A * M
  27. END FUNCTION
  28.  
  29. FUNCTION Ln(x)
  30.     negatif = 0
  31.     fois = 1
  32.     ajout = 0
  33.     IF x <= 0.0 THEN
  34.         Ln = 0
  35.         EXIT FUNCTION
  36.     END IF
  37.     IF x < 1.0 THEN negatif = 1 : x = 1.0 / x
  38.     WHILE x >= 10.0
  39.        x = x / 10.0
  40.        ajout = ajout + 2.302585092994046
  41.     WEND
  42.     WHILE x >= 1.1
  43.        x = SquareRoot(x)
  44.        fois = fois * 2
  45.     WEND
  46.     x = x - 1
  47.     savx = x
  48.     i = 2
  49.     xp = x * x
  50.     quotient = (xp / i)
  51.     dl = x - quotient
  52.     WHILE 0.000000000000001 < quotient
  53.        i = i + 1
  54.        xp = xp * x
  55.        dl = dl + (xp / i)
  56.        i = i + 1
  57.        xp = xp * x
  58.        quotient = (xp / i)
  59.        dl = dl - quotient
  60.     WEND
  61.     dl = dl * fois
  62.     dl = dl + ajout
  63.     IF negatif = 1 THEN dl = 0 - dl
  64.     Ln = dl
  65. END FUNCTION

on obtiendra le résultat suivant :

Ln(0.0)=0.0000000000
Ln(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

Science - Mathématique

Dernière mise à jour : Samedi, le 23 août 2014