Creating an Arbitrary-precision Nth Root of X Function in PHP
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:
- <?php
- /*
- This utility function computes the real Nth root of X
- to any specified number of decimals.
- It comes in handy for advanced science programming.
- */
- /*
- ===================================
- This example demonstrates computing
- the 5th root of 100 to 50 decimals.
- */
- // Set root value.
- $N = 5;
- // Set test argument as a numeric string.
- $X = '100';
- // Set number of decimals limit.
- $decimals = 50;
- // Call the function to compute Nth root of X
- // to the specified number of decimals.
- $NthRootX = BC_Nth_Root ($N, $X, $decimals);
- // Print computed root to page.
- print
- "<pre style='font-size:150%; font-weight:bold;'>
- $N root of $X to $decimals decimals =
- $NthRootX
- </pre>";
- /*
- =======================================================================
- This function computes the arbitrary-precision Nth root of a given
- numerical string X rounded to any specified number of decimals.
- ----------
- ARGUMENTS:
- N = Root to be iterated = Positive Integer: 1, 2, 3, 4, ..., etc.
- X = Numerical string for which we seek the Nth root.
- Decimals = Number of decimals at which to round off the result
- if the exact resolution is not possible.
- Based on the following Nth root of X iteration algorithm.
- ERRORS:
- An error message is returned if an argument is non-numeric.
- NO DEPENDENCIES
- =======================================================================
- */
- function BC_Nth_Root ($N, $X, $Decimals=16)
- {
- {
- return "ERROR: BC_Nth_Root()\n\(X) argument must be a numeric string.";
- }
- // Check for odd root value with a negative argument, in which
- // case, the sign of the argument is preserved in the root.
- // Generate 1st approximation = Native machine value.
- $D = 2*$d;
- // Loop to iterate root value (limit = 50 iterations).
- // This should never get anywhere near 50. This limit
- // prevents a lockup if something goes wrong.
- for ($i=1; $i <= 50; $i++)
- {
- // Compute next approximation (b) from current approximation (a).
- // If (a == b) to precision limit, then done.
- // Otherwise, execute another loop cycle.
- }
- // Done. Return root value rounded to the specified number of decimals.
- {
- }
- return $w;
- } // end of BC_Nth_Root (...)
- ?>
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
- 350 views