Algebraic structures
Project description
Algebra
Algebraic structures
Note: Algebra requires Python 3.6 or higher.
Requirements and Installation
pip install algebra
See also the instructions here.
Algebra
This package provides an algebra where the elements can be manipulated
in a natural way, with basic algebraic simplifications happening automatically.
It also support equality checking, which is conservative:
if x == y
, then x
is equal to y
;
but if x != y
, then either x
is different from y
, or it could not be
proven that x
is equal to y
.
As an example, let's create numbered elements.
from algebra import Element
class Numbered(Element):
total = 0
def __init__(self):
self.num = Numbered.total
Numbered.total += 1
def render(self, formatter):
return f'x{self.num}'
Then instances of Numbered
can be manipulated as follows.
>>> x0 = Numbered()
>>> x1 = Numbered()
>>> x0 == x0
True
>>> x0 == x1
False
>>> x0 + x1
x0 + x1
>>> x0 + x0
2 * x0
>>> x0 + x1 == x1 + x0
True
>>> x0 - x0
0
>>> 2 + x0
2 * 1 + x0
>>> (2 + x0) * x1
(2 * 1 + x0) * x1
>>> (2 + x0) * x1 * 0
0
Create Your Own Algebra
Coming soon.
Function Algebra
Coming soon.
Create Your Own Function Algebra
Coming soon.
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
File details
Details for the file algebra-1.2.1.tar.gz
.
File metadata
- Download URL: algebra-1.2.1.tar.gz
- Upload date:
- Size: 19.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd479a00bfb2b33120377bb6ad089c1909b1a10fa2606add0f81f4733d8ed356 |
|
MD5 | 1b13ef91ee8de98b2cbcac9a1fb2dcca |
|
BLAKE2b-256 | eb75d45e5e69b762a9932faa7befea68f5493eb0505f9f3579649efca1cf7ad1 |