Skip to main content

Useful tools for working with SymPy

Project description

sympy-addons

PyPI version Documentation Status

Useful tools for working with SymPy.

Main features:

  • tools for working on subexpressions including a convenient query API
  • tools for customizing and adding rules for SymPy's rewrite function
  • graph visualization of expression trees
  • tools for vector analysis

Installation

pip install --upgrade sympy-addons

Documentation

For a full documentation of the project, see this website.

Usage

The examples in this section use the following expression for performing queries:

$$ \left(x - 1\right)^{2} + \frac{\left(x - 4\right)^{3} + \left(x + 2\right)^{2} + \sin{\left(z \right)}}{\sqrt{\left(x - 1\right)^{2} + \left(x + 3\right)^{2}}} $$

or in SymPy:

from sympy import *
from sympy.abc import x, z
expr = (x - 1) ** 2 + ((x + 2) ** 2 + (x - 4) ** 3 + sin(z)) / sqrt((x - 1) ** 2 + (x + 3) ** 2)

Query API

The query API allows to select specific subexpressions.

Querying for types

To get all subexpression matching a given type, e.g. Pow:

from sympy_addons import Query

# define the query:
query = Query(type=Pow)

# execute it on an expression:
result = query.run(expr)

# result is an instance of QueryResult. You can iterate over it:
for item in result:
    print(item)

# or get the result as a list:
this_is_a_list_of_matching_expressions = result.all()

# or just the first/last:
first_matching_expr = result.first()
last_matching_expr = result.last()

Querying for inherited types

To find all subexpressions that are instances of, say, Atom and all classes inheriting from Atom, use the isinstance keyword:

result = Query(isinstance=Atom)

Querying for arguments

Non-atomic types in SymPy have an args attribute. You can query for subexpression which have exactly the args that you look for (order does not matter). For example,

result = Query(args=(x, 1)).run(expr)

will return all subexpressions with args==(x, 1) or args==(1, x).

If you don't want to specify all args, use args__contains instead:

result = Query(args__contains=(x,)).run(expr)

will return all subexpression with args attribute containing x.

Custom tests

You can define your own predicates to query for. For instance, to query for subexpressions with exactly three arguments, you could write

query = Query(test=lambd e: (not e.is_Atom) and len(e.args) == 3).run(expr)

Chaining queries

Each query is defined as one predicate. But you can concatenate queries to combine them logically.

For a logical OR, use the | operator:

query_1 = ...
query_2 = ...
result = (query_1 | query_2).run(expr) 

For an AND operation, use the filter method:

query_1 = ...
query_2 = ...
result = query_1.run(expr).filter(query_2)

Getting EPaths

The epath function in SymPy allows to work directly on subexpressions. As input, it needs the path to the subexpression, which is often cumbersome to get. The get_paths and get_path facilitate getting those paths.

For example,

from sympy_addons import get_epaths, get_epath

paths = get_epaths((x-1)**2, expr)

returns

['/[0]', '/[1]/[0]/[0]/[0]']

To only expand the $(x-1)^2$ under the square root, we would need the second path:

epath(paths[1], expr, expand)

The get_path function works just as the get_paths function, but it will raise an exception if the expression is not found or not unique.

Adding rewrite rules

SymPy's rewrite function allows to replace expressions in terms of mathematically equivalent expressions based on certain rules. If you want to add rewrite rules, this is easy to do with the given addon. For example, to add a rule for the addition theorem of the sine function:

from sympy import sin, cos
from sympy.abc import x
from sympy_addons import customize_rewrite

# This activates the customization facilities for rewriting rules:
customize_rewrite(sin)

# Now you can add a rewrite rule:
sin.rewrite_manager.add_rule('half-angle', lambda x: 2 * sin(x / 2) * cos(x / 2))

# Use the new rule:
expr = sin(2*x)
expr.rewrite('half-angle')  # returns 2*sin(x)*cos(x)

Running the Tests

Run the tests with pytest:

# if you haven't installed pytest yet:
pip install pytest 

pytest sympy_addons

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

sympy-addons-0.0.5.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

sympy_addons-0.0.5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file sympy-addons-0.0.5.tar.gz.

File metadata

  • Download URL: sympy-addons-0.0.5.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.2

File hashes

Hashes for sympy-addons-0.0.5.tar.gz
Algorithm Hash digest
SHA256 7515047499834203e9ea4be105d6739d613653f022910a2ec94ff6551953c733
MD5 b720debe6c7fe07014d09765f3091ebd
BLAKE2b-256 71e2785d497ff3da4611b406d717c739918a265ba82d0987e491e0cf97c64bc3

See more details on using hashes here.

File details

Details for the file sympy_addons-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: sympy_addons-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.2

File hashes

Hashes for sympy_addons-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 5fa41219477aa3112926415991cc79d0d6295fcb7b6943538cad1fbc618a1fdd
MD5 b7d2ab05d2e7bbc2c6e5ad78a3fa6d76
BLAKE2b-256 6f6157bd5e4430ea2145e216999ba9233edd24c018278b18f4f2155a145d2bbe

See more details on using hashes here.

Supported by

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