Skip to main content

Utilities for MathJSON evaluation

Project description

MathJSON Solver

PyPI PyPI Downloads Python 3.7+

A reliable Python library for numerically evaluating mathematical expressions in MathJSON format. Perfect for applications that need to safely execute user-provided formulas, calculate dynamic equations, or process mathematical data.

What is MathJSON? MathJSON represents mathematical expressions as JSON arrays, like ["Add", 1, 2, 3] for 1+2+3. This format is safe, structured, and easy to generate programmatically.

Table of Contents

Installation

pip install mathjson-solver

Requirements: Python 3.7+

Optional: numpy (only required for TrapezoidalIntegrate function)

Quick Start

from mathjson_solver import create_solver, MathJSONException

# Define variables and create solver
parameters = {"x": 2, "y": 3}
solver = create_solver(parameters)

# Evaluate expressions
basic_math = solver(["Add", "x", "y", 4])
print(basic_math)  # 9 (because 2+3+4=9)

# More complex expressions
result = solver(["Multiply", ["Add", "x", 1], ["Subtract", "y", 1]])
print(result)  # 6 (because (2+1) * (3-1) = 6)

# Handle errors gracefully
try:
    solver(["Divide", 1, 0])
except MathJSONException as e:
    print(f"Math error: {e}")
    # Math error: Problem in Divide. ['Divide', 1, 0]. division by zero

Think Functional: MathJSON Solver embraces functional programming principles. Instead of writing loops and modifying variables, you compose expressions that transform data. Functions like Map, Reduce, and Filter let you process arrays elegantly, while immutable operations ensure predictable, side-effect-free calculations. Don't worry if you're new to functional programming — the examples will guide you naturally into this powerful paradigm.

# Functional approach: transform data with expressions
solver(["Map", ["Array", 1, 2, 3, 4], ["Multiply"], 2])  # [2, 4, 6, 8]
solver(["Reduce", ["Array", 1, 2, 3, 4], 0, ["Add", "acc", "item"],
        ["Variable", "acc"], ["Variable", "item"], ["Variable", "i"]])  # 10

Supported Operations

The library supports a comprehensive set of mathematical operations:

  • Arithmetic: Add, Sum, Subtract, Multiply, Divide, Negate, Power, Square, Root, Sqrt, Abs, Round, Floor, Ceil
  • Trigonometry: Sin, Cos, Tan, Arcsin, Arccos, Arctan
  • Logarithms: Log, Log2, Log10, Exp
  • Comparison: Equal, StrictEqual, NotEqual, Greater, GreaterEqual, Less, LessEqual
  • Logic & Sets: Any, All, Not, And, Or, In, NotIn, ContainsAnyOf, ContainsAllOf, ContainsNoneOf
  • Statistics: Average, Max, Min, Median, Length
  • Functional Programming: Map, Reduce, Filter
  • Arrays: Array creation, GenerateRange, AtIndex, Slice, Appended, CumulativeSum, CumulativeProduct
  • Control Flow: If statements, Switch-Case, Constants definition
  • Type Conversion: Int, Float, Str, IsDefined
  • Date/Time: Strptime, Strftime, Today, Now, TimeDelta functions (Weeks, Days, Hours, Minutes)
  • Integration: TrapezoidalIntegrate (requires numpy), Interp, FindIntervalIndex, Variable references
  • Advanced: HasMatchingSublist for pattern matching
  • Constants: Pi

View complete documentation with examples →

Error Handling

MathJSON Solver raises MathJSONException for invalid expressions or mathematical errors:

from mathjson_solver import create_solver, MathJSONException

solver = create_solver({})

# Handle specific math errors
try:
    result = solver(["Sqrt", -1])  # Invalid: square root of negative
except MathJSONException as e:
    print(f"Cannot evaluate: {e}")

# Handle malformed expressions
try:
    result = solver(["UnknownFunction", 1, 2])
except MathJSONException as e:
    print(f"Unsupported operation: {e}")

Use Cases

  • Dynamic Formulas: Let users create custom calculations in web applications
  • Scientific Computing: Evaluate mathematical models with variable parameters
  • Business Logic: Process complex pricing rules or scoring algorithms
  • Data Processing: Apply mathematical transformations to datasets
  • Health Applications: Calculate medical scores, dosages, or risk assessments

Testing

Install development dependencies and run tests:

# Install pytest if not already installed
pip install pytest

# Run tests from project directory
pytest

# Run with coverage
pytest --cov=mathjson_solver

Community

Contributing

We welcome contributions! Please feel free to:

  • Report bugs or request features via GitHub Issues
  • Submit pull requests with improvements

License

View license information

References

This implementation was inspired by the CortexJS Compute Engine, though designed as an independent implementation focused on our specific use cases.


Made with ❤️ by Longenesis

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mathjson_solver-1.20.1.tar.gz (1.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mathjson_solver-1.20.1-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file mathjson_solver-1.20.1.tar.gz.

File metadata

  • Download URL: mathjson_solver-1.20.1.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for mathjson_solver-1.20.1.tar.gz
Algorithm Hash digest
SHA256 c3eec6d2dfbc6743e3695891be5d170d69d264740105137f98e9f48dcb3b223e
MD5 fd747ddefe329f1fa7816043ba332570
BLAKE2b-256 19d9536473329e384140b4a76faa4dfbe213680755359bd044509c99d7fc7992

See more details on using hashes here.

File details

Details for the file mathjson_solver-1.20.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mathjson_solver-1.20.1-py3-none-any.whl
Algorithm Hash digest
SHA256 76e896b3b301cfd773645b51445ec3a120117eee1e7a7eb0d3383b6e258443d6
MD5 9fbbd91c12fd9a65c4ad6b66d9c1f4bb
BLAKE2b-256 22ac6437a78a5e6ae28b795341993eb3cf760149a5ef6e68a4725b704818e6e5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page