Indietro

#math

2 APIs con questa etichetta

Number Base Converter API

Convert integers between any numeral systems with exact big-integer math. Pass a number and a from/to base (radix 2 to 36, arbitrarily large, signed) and the convert endpoint returns the result and the decimal value; common 0x, 0b and 0o prefixes are accepted when they match the base, and whitespace or underscores in the input are ignored. The bases endpoint shows a single number across binary, octal, decimal, hexadecimal, base32 and base36 at once, together with its bit length, byte length and sign. Everything is computed locally with BigInt, so values of any size are exact and deterministic. Ideal for low-level and embedded debugging, networking and bit-twiddling work, teaching number systems, and anywhere you juggle hex, binary and decimal. A numeral-base converter — distinct from the text-encoding toolkit (encoding: base64/base32/hex of bytes), the Elixir/Erlang Hex package registry (hex) and number-to-words (numberwords). No upstream key, no cache.

api.oanor.com/baseconvert-api

Math API

Un motor matemático completo como API, impulsado por mathjs. Evalúa cualquier expresión — aritmética, cientos de funciones (sqrt, sin, log, gcd, factorial, combinaciones, …), constantes (pi, e), números complejos, matrices y teoría de números — con control de precisión opcional (por ejemplo, 2+3*sqrt(16) → 14, pi con 5 dígitos → 3.1416). Toma la derivada simbólica de una expresión con respecto a una variable (x^2+3x → 2*x+3), y simplifica álgebra (2x+3x → 5*x). Sin bibliotecas de fórmulas que empaquetar, sin matemáticas que reimplementar: envía una expresión, obtén la respuesta. Ideal para calculadoras y aplicaciones educativas STEM, lógica de hojas de cálculo y formularios, herramientas de cuestionarios y tareas, paneles de ingeniería y datos, y cualquier producto que necesite cómputo confiable del lado del servidor.

api.oanor.com/math-api