Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinka/egga
Symbolic Geometric Algebra with E-Graphs
https://github.com/robinka/egga
bivector clifford-algebra egraph equation geometric-algebra math mathematics multivector physics python simplify solve symbolic symbolic-geometric-agebra symbolic-math vector
Last synced: about 1 month ago
JSON representation
Symbolic Geometric Algebra with E-Graphs
- Host: GitHub
- URL: https://github.com/robinka/egga
- Owner: RobinKa
- License: mit
- Created: 2023-09-28T00:30:06.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-11T22:31:25.000Z (about 1 year ago)
- Last Synced: 2024-09-23T04:10:46.615Z (3 months ago)
- Topics: bivector, clifford-algebra, egraph, equation, geometric-algebra, math, mathematics, multivector, physics, python, simplify, solve, symbolic, symbolic-geometric-agebra, symbolic-math, vector
- Language: Python
- Homepage:
- Size: 69.3 KB
- Stars: 17
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# E-Graph Geometric Algebra (EGGA)
[![PyPI](https://badge.fury.io/py/egga.svg)](https://badge.fury.io/py/egga)
Symbolic [Geometric Algebra](https://en.wikipedia.org/wiki/Geometric_algebra) with [E-Graphs](https://egraphs-good.github.io/)
Things you can do with this library
- Simplify expressions
- Prove equalities
- Solve for variablesThings that are supported
- Any signature
- Arbitrary number of basis vectors
- Symplectic Geometric Algebra (aka Weyl Algebras)
- Derivatives
- Add your own expression types and rules (with egglog)Based on the [Python bindings](https://github.com/metadsl/egglog-python) for [egglog](https://github.com/egraphs-good/egglog)
## Setup
Supports Python 3.8 and higher.
`pip install egga`
## Usage
The first step is to create a `GeometricAlgebra` object with a given signature.
You can then use its basis vectors as well as functions exposed by it. Use the utility methods provided to do things like simplification and
equation solving. In some cases you might need to interface with egglog directly. Below are
some examples for common use-cases.Simplification
```python
from egga.geometric_algebra import GeometricAlgebra
from egga.utils import simplifyga = GeometricAlgebra(signature=[1.0, 1.0])
e_0, e_1 = ga.basis_vectors
e_01 = e_0 * e_1# Build an expression to simplify
expr = e_01 * e_0 * ~e_01# Prints Simplified: -e("0")
print("Simplified:", simplify(ga, expr))
```Equation solving
```python
from egglog import unionfrom egga.geometric_algebra import GeometricAlgebra
from egga.utils import simplify# Pass eq_solve=True to enable the equation solving rules.
# Add a cost to variable to it gets rewritten to something else.
ga = GeometricAlgebra(signature=[1.0, 1.0], eq_solve=True, costs={"variable": 1_000})e_0, e_1 = ga.basis_vectors
e_01 = e_0 * e_1# Solve e_01 * x * ~e_01 = e_0 for x
x = ga.expr_cls.variable("x")
lhs = e_01 * x * ~e_01
rhs = -e_0# Make LHS equal to RHS
ga.egraph.register(union(lhs).with_(rhs))assert str(simplify(ga, x)) == str(ga.expr_cls.e("0"))
```Equality check
```python
from egga.geometric_algebra import GeometricAlgebra
from egga.utils import check_equalityga = GeometricAlgebra(signature=[1.0, 1.0])
e_0, e_1 = ga.basis_vectors
e_01 = e_0 * e_1# Build an lhs to check for equality to an rhs
lhs = e_01 * e_01
rhs = ga.expr_cls.scalar_literal(-1.0)assert check_equality(ga, lhs, rhs)
```The [/examples](examples) as well as the [/tests](tests) directories contain more examples.
## List of expressions
### Operators
| Code | Description |
| ------------ | ------------------------------------------------------------------------------- |
| `x_1 + x_2` | Addition of x_1 and x_2 |
| `x_1 - x_2` | Subtraction of x_1 and x_2 |
| `x_1 * x_2` | Multiplication of x_1 and x_2 (aka the Geometric Product) |
| `x_1 ^ x_2` | Wedge / exterior / outer product of x_1 and x_2 |
| `x_1 \| x_2` | Inner ("fat dot") product of x_1 and x_2 |
| `-x_1` | Negation of x_1 |
| `~x_1` | Reversion of x_1 |
| `x_1 ** x_2` | x_1 to the power of x_2 |
| `x_1 / x_2` | x_1 divided by x_2 (more generally, x_1 right-multiplied by the inverse of x_2) |### Functions
| Code | Description |
| ------------------------- | ---------------------------------------------------------------------------------------------------- |
| `inverse(x)` | Multiplicative inverse of x |
| `grade_involution(x)` | [Grade involution](https://en.wikipedia.org/wiki/Paravector#Grade_automorphism) of x |
| `clifford_conjugation(x)` | [Clifford conjugate](https://en.wikipedia.org/wiki/Paravector#Clifford_conjugation) of x |
| `scalar(x)` | Mark x as a scalar |
| `scalar_literal(f)` | Create a scalar constant |
| `scalar_variable(s)` | Create a scalar variable |
| `e(s)` | Basis vector |
| `e2(s_1, s_2)` | Basis bivector |
| `e3(s_1, s_2, s_3)` | Basis trivector |
| `variable(s)` | Create a variable |
| `cos(x)` | Cos of x |
| `sin(x)` | Sin of x |
| `cosh(x)` | Cosh of x |
| `sinh(x)` | Sinh of x |
| `exp(x)` | Exponential function of x |
| `grade(x)` | Grade of x |
| `mix_grades(x_1, x_2)` | Represents the mixture of two grades. If x_1 and x_2 are the same, this will be simplified to `x_1`. |
| `select_grade(x_1, x_2)` | Selects the grade x_2 part of x_1 |
| `abs(x)` | Absolute value of x |
| `rotor(x_1, x_2)` | Shorthand for `exp(scalar_literal(-0.5) * scalar(x_2) * x_1)` |
| `sandwich(x_1, x_2)` | Shorthand for `x_1 * x_2 * ~x_1` |
| `diff(x_1, x_2)` | Derivative of x_1 with respect to x_2 |### Unsupported but exists, might or might not work
| Code | Description |
| -------------------- | ------------------------------ |
| `boolean(x)` | Mark x as a boolean |
| `x_1.equal(x_2)` | Whether x_1 equals x_2 |
| `x_1.not_equal(x_2)` | Whether x_1 does not equal x_2 |## Caveats
- Egraphs are bad with associativity (combined with commutativity?) so things can blow up
- Most operations aren't "fully" implemented (eg. `pow` only supports powers of two right now)## Contributing
Code contributions as well as suggestions and comments about things that don't work yet are appreciated.
You can reach me by email at `[email protected]` or in the [Bivector Discord](https://discord.gg/vGY6pPk).