Section courante

A propos

Section administrative du site

ACOSH

ArcCosinus Hyperbolique
PHP 4.1+

Syntaxe

function acosh($expression);

Paramètres

Nom Description
$expression Ce paramètre permet d'indiquer une expression représentant un nombre à traiter

Description

Cette fonction trigonométrique retourne la valeur de l'«ArcCosinus» hyperbolique.

Algorithme

MODULE SQRT(X)
   SI X = 0.0 ALORS
      RETOURNE 0.0
   SINON
      M ← 1.0
      XNX
      BOUCLE FAIRE TANT QUE XN >= 2.0
         XN ← 0.25 x XN
         M ← 2.0 x M
      FIN BOUCLE FAIRE TANT QUE
      BOUCLE FAIRE TANT QUE XN < 0.5
         XN ← 4.0 x XN
         M ← 0.5 x M
      FIN BOUCLE FAIRE TANT QUE
      AXN
      B ← 1.0 - XN
      BOUCLE REPETER
         AA x (1.0 + 0.5 x B)
         B ← 0.25 x (3.0 + B) x B x B
      FIN BOUCLE JUSQU'A B ← 1.0E - 15
      RETOURNE A x M
   FIN SI

MODULE LN(x)
   negatif ← faux
   fois ← 1
   ajout ← 0
   SI x <= 0.0 ALORS
      RETOURNE 0
   FIN SI
   SI x < 1.0 ALORS
      negatif ← vrai
      x ← 1.0 / x
   FIN SI
   BOUCLE FAIRE TANT QUE x >= 10.0
      xx / 10.0
      ajoutajout + 2.302585092994046
   FIN BOUCLE FAIRE TANT QUE
   BOUCLE FAIRE TANT QUE x >= 1.1
      x ← SQRT(x)
      foisfois x 2
   FIN BOUCLE FAIRE TANT QUE
   xx - 1
   savxx
   i ← 2
   xpx x x
   quotient ← (xp / i)
   dlx - quotient
   BOUCLE FAIRE TANT QUE 1.0E-15 ← quotient
      ii + 1
      xpxp x x
      dldl + (xp / i)
      ii + 1
      xpxp x x
      quotient ← (xp / i)
      dldl - quotient
   FIN BOUCLE FAIRE TANT QUE
   dldl x fois
   dldl + ajout
   SI negatif ALORS
      dl ← -dl
   FIN SI
   RETOURNE dl

MODULE ACOSH(x)
   SI x < 1 ALORS
      RETOURNE une erreur ou une valeur invalide (acosh n'est défini que pour x ≤ 1)
   SINON
      RETOURNE LN(x + SQRT(x2 - 1))
   FIN SI

Exemple

Voici un exemple permet d'afficher les Arc Cosinus hyperbolique inférieurs à π et supérieur à 1 :

Essayer maintenant !
  1. <?php
  2. $I = 1;
  3. while($I < pi()) {
  4.    echo "ACosh(".$I.")=".acosh($I)."<br />";
  5.    $I += 0.1;
  6. }
  7. ?>

on obtiendra le résultat suivant :

ACosh(1)=0
ACosh(1.1)=0.443568254385
ACosh(1.2)=0.622362503715
ACosh(1.3)=0.756432910857
ACosh(1.4)=0.867014726491
ACosh(1.5)=0.962423650119
ACosh(1.6)=1.046967915
ACosh(1.7)=1.12323098259
ACosh(1.8)=1.19291073099
ACosh(1.9)=1.2571958266
ACosh(2)=1.31695789692
ACosh(2.1)=1.37285914424
ACosh(2.2)=1.42541694307
ACosh(2.3)=1.47504478124
ACosh(2.4)=1.52207936746
ACosh(2.5)=1.56679923697
ACosh(2.6)=1.60943791243
ACosh(2.7)=1.65019345498
ACosh(2.8)=1.68923554998
ACosh(2.9)=1.72671086562
ACosh(3)=1.76274717404
ACosh(3.1)=1.79745656827

Voir également

Langage de programmation - PHP - Référence de procédures et fonctions - cosh
Langage de programmation - PHP - Référence de procédures et fonctions - acos
Langage de programmation - PHP - Référence de procédures et fonctions - asinh
Langage de programmation - PHP - Référence de procédures et fonctions - atanh

Dernière mise à jour : Dimanche, le 22 mars 2015