Created by overlord in the scope of SMath project. Published by overlord.

Features of Big Integer Arithmetics

Version 0.1.7679.25195

Functions

Additional components that add new mathematical functions to the SMath Studio program, necessary for solving problems from various fields.

  1. bigAbs("string")
    Absolute value of "1:integer" written as strings.
  2. bigAdd("1:string", "2:string")
    Add "1:integer" to another "2:integer" written as strings.
  3. bigCmp("1:string", "2:string")
    Compare "1:integer" to another "2:integer" written as strings.
  4. bigDiv("1:string", "2:string")
    Divide "1:integer" to another "2:integer" written as strings.
  5. bigGCD("1:string", "2:string")
    Greatest Common Divisor of "1:integer" and "2:integer" written as strings.
  6. bigLog("string")
    Logarithm value of "1:integer" written as strings.
  7. bigLog10("string")
    Logarithm value of "1:integer" in base 10 written as strings.
  8. bigMax("1:string", "2:string")
    Maximum of "1:integer" and "2:integer" written as strings.
  9. bigMin("1:string", "2:string")
    Minimum of "1:integer" and "2:integer" written as strings.
  10. bigMod("1:string", "2:string")
    Mod of "1:integer" to "2:integer" written as strings.
  11. bigModPow("1:string", "2:string", "3:string")
    Mod power "1:integer" to "2:integer" of "3:integer" written as strings.
  12. bigMul("1:string", "2:string")
    Multiples+ "1:big integer" to another "2:big integer" written as strings.
  13. bigNeg("string")
    Negates value of "1:integer" written as strings.
  14. bigPow("1:string", "2:string")
    Power of "1:integer" to "2:integer" written as strings.
  15. bigSub("1:string", "2:string")
    Subtract from "1:big integer" another "2:big integer" written as strings.