Creating an Arbitrary-precision Nth Root of X Function in PHP

Language

This math utility function computes the real Nth root of X to any specified number of decimals.

Above is the iteration equation evaluated by the function. It comes in handy for advanced scientific programming.

The archive contains a demo program.

The demo code below, should return:

5 root of 100 to 50 decimals =2.51188643150958011108503206779932739415851810078248

Here is a listing of the demo program and the function code:

  1. <?php
  2.  
  3. /*
  4.    This utility function computes the real Nth root of X
  5.    to any specified number of decimals.
  6.  
  7.    It comes in handy for advanced science programming.
  8. */
  9.  
  10.  
  11. /*
  12.    ===================================
  13.    This example demonstrates computing
  14.    the 5th root of 100 to 50 decimals.
  15. */
  16.  
  17. // Set root value.
  18.    $N = 5;
  19.  
  20. // Set test argument as a numeric string.
  21.    $X = '100';
  22.  
  23. // Set number of decimals limit.
  24.    $decimals = 50;
  25.  
  26. // Call the function to compute Nth root of X
  27. // to the specified number of decimals.
  28.    $NthRootX = BC_Nth_Root ($N, $X, $decimals);
  29.  
  30. // Print computed root to page.
  31.    print
  32. "<pre style='font-size:150%; font-weight:bold;'>
  33.  
  34. $N root of $X to $decimals decimals =
  35.  
  36. $NthRootX
  37. </pre>";
  38.  
  39.  
  40.  
  41. /*
  42.    =======================================================================
  43.    This function computes the arbitrary-precision Nth root of a given
  44.    numerical string X rounded to any specified number of decimals.
  45.  
  46.    ----------
  47.    ARGUMENTS:
  48.    N = Root to be iterated = Positive Integer: 1, 2, 3, 4, ..., etc.
  49.    X = Numerical string for which we seek the Nth root.
  50.  
  51.    Decimals = Number of decimals at which to round off the result
  52.               if the exact resolution is not possible.
  53.  
  54.    Based on the following Nth root of X iteration algorithm.
  55.  
  56.    ERRORS:
  57.    An error message is returned if an argument is non-numeric.
  58.  
  59.    NO DEPENDENCIES
  60.    =======================================================================
  61. */
  62.  
  63.    function BC_Nth_Root ($N, $X, $Decimals=16)
  64. {
  65.    $x = trim($X);
  66.    $N = trim($N);
  67.  
  68.    if (!Is_Numeric($x) or !Is_Numeric($N))
  69.   {
  70.    return "ERROR: BC_Nth_Root()\n\(X) argument must be a numeric string.";
  71.   }
  72.  
  73.    $N = floor(abs($N));
  74.  
  75. // Check for odd root value with a negative argument, in which
  76. // case, the sign of the argument is preserved in the root.
  77.    $sign = '';  if ($x < 0) {$x = Str_Replace('-', '', $x);  $sign = '-';}
  78.  
  79. // Generate 1st approximation = Native machine value.
  80.    $a = SPrintF("%1.16f", pow($x, 1/$N));
  81.    $n = floor(abs($N)) - 1;
  82.    $d = floor(abs($Decimals));
  83.    $D = 2*$d;
  84.  
  85. // Loop to iterate root value (limit = 50 iterations).
  86. // This should never get anywhere near 50. This limit
  87. // prevents a lockup if something goes wrong.
  88.    for ($i=1;  $i <= 50;   $i++)
  89.   {
  90. // Compute next approximation (b) from current approximation (a).
  91.    $b = bcDiv(bcAdd(bcMul($n,$a,$D),bcDiv($x,bcpow($a,$n,$D),$D),$D),$N,$D);
  92.  
  93. // If (a == b) to precision limit, then done.
  94. // Otherwise, execute another loop cycle.
  95.    if (bcComp($a,$b,$D) == 0) {break;} else {$a = $b;}
  96.   }
  97. // Done.  Return root value rounded to the specified number of decimals.
  98.    $w = $sign.bcAdd($b, '0.'.Str_Repeat(0,$d).'5', $d);
  99.  
  100.    if ($w == bcAdd('0', $w))
  101.       {
  102.        $w = Rtrim(Rtrim($w, '0'), '.');
  103.       }
  104.  
  105.    return $w;
  106.  
  107. } // end of  BC_Nth_Root (...)
  108.  
  109. ?>
  110.  

I hope this function I provided will help you. Thanks

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment