Skip to main content

A minimalistic symbolic package.

Project description

symbolite: a minimalistic symbolic python package


Symbolite allows you to create symbolic mathematical expressions. Just create a symbol (or more) and operate with them as you will normally do in Python.

>>> from symbolite.symbol.abstract import Symbol
>>> x = Symbol("x")
>>> y = Symbol("y")
>>> expr1 = x + 3 * y
>>> print(expr1)
(x + (3 * y))

You can easily replace the symbols by the desired value.

>>> expr2 = expr1.subs_by_name(x=5, y=2)
>>> print(expr2)
(5 + (3 * 2))

The output is still a symbolic expression, which you can evaluate:

>>> expr2.eval()
11

Notice that we also got a warning (No libsymbol provided, defaulting to 'math'). This is because evaluating an expression requires a actual library implementation, name usually as libsl. The default one just uses python's math module.

You can avoid this warning by explicitely providing an libsl implementation.

>>> from symbolite.symbol import default
>>> expr2.eval(libsymbol=default)
11

You can also import it with the right name and it will be found

>>> from symbolite.symbol import default as libsymbol
>>> expr2.eval()
11

I guess you want to do some math now, right? 70 math functions are defined can be used through symbolite-scalar with implementations using the Python math module, numpy and scipy. Check it out!

Installing:

pip install -U symbolite

FAQ

Q: Is symbolite a replacement for SymPy?

A: No

Q: Does it aim to be a replacement for SymPy in the future?

A: No

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

symbolite-0.3.tar.gz (16.0 kB view hashes)

Uploaded Source

Built Distribution

symbolite-0.3-py3-none-any.whl (14.4 kB view hashes)

Uploaded Python 3

Supported by

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