Автор: overlord. Создано в рамках проекта SMath. Опубликовано пользователем overlord.

Функциональность Big Integer Arithmetics

Версия 0.1.7679.25195

Функции

Дополнительные компоненты, добавляющие в программу SMath Studio новые математические функции, необходимые для решения задач из различных областей.

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