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.19.0.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.19.0-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mathjson_solver-1.19.0.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.19.0.tar.gz
Algorithm Hash digest
SHA256 13b304c85ec4ea8b1a11a32e6344e764d454e1151e9e902d201b750fe34ce046
MD5 da57f65cd3bff8780103569e57bddeef
BLAKE2b-256 d2e1c2ea296e563056c5808017b65e60fec971e23c9f27b7264bee8ab229a733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mathjson_solver-1.19.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a5f792995fe6d26ae052f2a86a1b2550c02e75e35bf1f069dd6905019f1b2ad4
MD5 918d6c623afc7691de9522981897afe1
BLAKE2b-256 d07f689faa27bec10ed6bc7b866025a817606257f8cff45fd2acbdd8733d1e8b

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