Bloated Shrimp Math is a large project (currently under construction) meant to act as a library of the main mathematical PHP functions. Several functions were excluded, as they were repetitive or considered unuseful. If there are any suggestions for this project, please record them here.
There are currently six categories of functions: triangles, conversions, rounding, logarithms, checks, and 'other'.
A complete list of every mathematical PHP function can be found here. For more information on mathematics, please visit MFSP.
Input a number to output its cosine.
Input a number to output its sine.
Input a number to output its tangent.
Input a number to output its inverse cosine.
Input a number to output its inverse sine.
Input a number to output its inverse tangent.
Input a number to output its hyperbolic cosine.
Input a number to output its hyperbolic sine.
Input a number to output its hyperbolic tangent.
Input a number to output its inverse hyperbolic cosine.
Input a number to output its inverse hyperbolic sine.
Input a number to output its inverse hyperbolic tangent.
Input two sides of a triangle to output their hypotenuse.
Input a number, its current base, then its new base to output that value in the new base.
Input a number in binary to output its equivalent in decimal.
Input a number in decimal to output its equivalent in binary.
Input a number in hexadecimal to output its equivalent in decimal.
Input a number in decimal to output its equivalent in hexadecimal.
Input a number in octal to output its equivalent in decimal.
Input a number in decimal to output its equivalent in octal.
Input a number in radians to output its equivalent in degrees.
Input a number in degrees to output its equivalent in radians.
Input a number to round it up to the next integer.
Input a number to round it down to the next integer.
Input a decimal and the number of digits of to round it to.
Input a number to output its log base 10.
Input a number and a logarithmic base to output the logarithm.
Input a number to check if it is finite.
Input a number to check if it is infinite.
Input a number to output its absolute value.
Input a number and then a value to raise it to to output the raised answer.
Input a number to output e raised to that power.
(Optional) Enter a minimum and maximum value, and output a random value.
Calculates a bit of pi.
Input a number to output its square root.