Symbolic Geometric Algebra/Calculus package for SymPy.
Project description
GAlgebra
Symbolic Geometric Algebra/Calculus package for SymPy.
Development Status
brombo/galgebra was originally written by Alan Bromborsky, but was no longer actively maintained, and as of 2019-11-25 no longer exists.
pygae/galgebra is a community fork, maintained by Pythonic Geometric Algebra Enthusiasts.
The fork supports Python 3, increases test coverage, sets up CI and linters, maintains releases to PyPI, improves docs and has many bug fixes, see Changelog.
For information on how GAlgebra is used in other projects, see Used by.
[!IMPORTANT] Readers of Prof. Alan Macdonald's Linear and Geometric Algebra and Vector and Geometric Calculus, please check out Migrating guide for readers of LAGA&VAGC below.
If you are coming from sympy.galgebra or brombo/galgebra (unlikely nowadays), please check out section the old Migration Guide.
Features
Geometric Algebra
- Arbitrary Vector Basis and Metric
- Scalar, Vector, Bivector, Multivector, Pseudoscalar, Spinor, Blade
- Basic Geometric Algebra Operations
- Sum, Difference
- Geometric Product
- Outer and Inner Products
- Left and Right Contractions
- Reverse, Dual, Undual, Grade Involution, Clifford Conjugation
- Commutator
- Projection, Reflection, Rotation
- Reciprocal Frames
- Multivector Functions
- Exponential, Inverse, Norm, Magnitude
- Scalar Product, Quadratic Form
- Grade Selection, Even/Odd Parts
- Blade Coefficients, Components
- Inspecting Base/Blade Representation
- Symbolic Manipulations
expand,factor,simplify,subs,trigsimpetc.
Overloaded Python operators for GA operations
| Operation | Python | Description |
|---|---|---|
A + B |
A + B |
Sum |
A - B |
A - B |
Difference |
AB |
A * B |
Geometric product |
A ^ B |
A ^ B |
Outer (wedge) product |
A . B |
A | B |
Inner (dot) product |
A ⌋ B |
A < B |
Left contraction |
A ⌊ B |
A > B |
Right contraction |
A / B |
A / B |
Division (A times B inverse) |
s / A |
s / A |
Scalar divided by multivector |
~A |
~A |
Reverse |
abs(A) |
abs(A) |
Norm |
A[k] |
A[k] |
Grade-k part |
Multivector methods and functions
| Method | Function | Description |
|---|---|---|
A.rev() |
rev(A) |
Reverse |
A.dual() |
dual(A) |
Dual |
A.undual() |
undual(A) |
Undual |
A.g_invol() |
g_invol(A) |
Grade involution |
A.ccon() |
ccon(A) |
Clifford conjugation |
A.exp() |
exp(A) |
Exponential |
A.inv() |
inv(A) |
Inverse |
A.norm() |
norm(A) |
Norm |
A.norm2() |
norm2(A) |
Norm squared |
A.mag() |
mag(A) |
Magnitude |
A.mag2() |
mag2(A) |
Magnitude squared |
A.sp(B) |
sp(A, B) |
Scalar product |
A.qform() |
qform(A) |
Quadratic form |
A.even() |
even(A) |
Even-grade part |
A.odd() |
odd(A) |
Odd-grade part |
A.scalar() |
scalar(A) |
Scalar (grade-0) part |
A.grade(k) |
-- | Grade-k part |
A.proj(blades) |
proj(A, B) |
Projection |
A.blade_coefs() |
-- | Blade coefficients |
A.components() |
-- | List of single-blade components |
A.get_coefs(k) |
-- | Grade-k coefficients |
Geometric Calculus
- Geometric Derivative
- Submanifolds
- Linear Transformations
- Differential Operators
The various derivatives of a multivector function is accomplished by multiplying the gradient operator vector with the function:
\begin{aligned}
\nabla F &= \texttt{grad*F} \\
F \bar{\nabla} &= \texttt{F*rgrad} \\
\nabla {\wedge}F &= \mathtt{grad \verb!^! F} \\
F {\wedge}\bar{\nabla} &= \mathtt{F \verb!^! rgrad} \\
\nabla \cdot F &= \texttt{grad|F} \\
F \cdot \bar{\nabla} &= \texttt{F|rgrad} \\
\nabla \rfloor F &= \mathtt{grad \lt F} \\
F \rfloor \bar{\nabla} &= \mathtt{F \lt rgrad} \\
\nabla \lfloor F &= \mathtt{grad \gt F} \\
F \lfloor \bar{\nabla} &= \mathtt{F \gt rgrad}
\end{aligned}
\begin{aligned}
F \nabla &= \texttt{F*grad} \\
\bar{\nabla} F &= \texttt{rgrad*F} \\
F {\wedge}\nabla &= \mathtt{F \verb!^! grad} \\
\bar{\nabla} {\wedge}F &= \mathtt{rgrad \verb!^! F} \\
F \cdot \nabla &= \texttt{F|grad} \\
\bar{\nabla}\cdot F &= \texttt{rgrad|F} \\
F \rfloor \nabla &= \mathtt{F \lt grad} \\
\bar{\nabla} \rfloor F &= \mathtt{rgrad \lt F} \\
F \lfloor \nabla &= \mathtt{F \gt grad} \\
\bar{\nabla} \lfloor F &= \mathtt{rgrad \gt F}
\end{aligned}
Tip: an example for getting grad and rgrad of a 3-d Euclidean geometric algebra in rectangular coordinates:
from sympy import symbols
from galgebra.ga import Ga
o3d = Ga('e', g=[1,1,1], coords=symbols('x,y,z',real=True))
(grad,rgrad) = o3d.grads()
Printing
- Enhanced Console Printing
- Latex Printing
- out-of-the-box support for Jupyter Notebook
- PDF generation and croping support if you have
pdflatex/pdfcropinstalled
Getting Started
After installing GAlgebra (see section Installing GAlgebra below), in a Jupyter Notebook:
from sympy import symbols
from galgebra.ga import Ga
from galgebra.printer import Format
Format(Fmode = False, Dmode = True)
st4coords = (t,x,y,z) = symbols('t x y z', real=True)
st4 = Ga('e',
g=[1,-1,-1,-1],
coords=st4coords)
M = st4.mv('M','mv',f = True)
M.grade(3).Fmt(3,r'\langle \mathbf{M} \rangle _3')
You will see:
\begin{aligned} \langle \mathbf{M} \rangle _3 =& M^{txy} \boldsymbol{e}_{t}\wedge \boldsymbol{e}_{x}\wedge \boldsymbol{e}_{y} \\ & + M^{txz} \boldsymbol{e}_{t}\wedge \boldsymbol{e}_{x}\wedge \boldsymbol{e}_{z} \\ & + M^{tyz} \boldsymbol{e}_{t}\wedge \boldsymbol{e}_{y}\wedge \boldsymbol{e}_{z} \\ & + M^{xyz} \boldsymbol{e}_{x}\wedge \boldsymbol{e}_{y}\wedge \boldsymbol{e}_{z} \end{aligned}
You may also check out more examples here.
For detailed documentation, please visit https://galgebra.readthedocs.io/ .
Installing GAlgebra
Prerequisites
- Works on Linux, Windows, Mac OSX
- Python >= 3.8
- 0.5.0 was the last supported release for Python 3.5-3.7
- 0.4.x was the last supported release series for Python 2.7
- SymPy >= 1.3
- Only SymPy 1.12 is tested via CI, see
.github/workflows/ci.ymlfor more details - 0.5.0 was the last supported release for SymPy 1.7
- Only SymPy 1.12 is tested via CI, see
Installing GAlgebra From PyPI (Recommended for users)
pip install galgebra
Then you are all set!
Installing GAlgebra From Source (Recommended for developers)
To install from the latest source code of GAlgebra:
git clone https://github.com/pygae/galgebra.git
cd galgebra
pip install -e .
Note that the optional -e argument is used here for a developer install so modifying the source will take effect immediately without the need of reinstallation.
Now you may run tests to verify the installation, run from the root of the repository:
pip install pytest
pytest test
Further, to run the complete test suite including the ones using nbval, just run:
pip install nbval
pytest --nbval examples/ipython/ --nbval examples/primer/ test --nbval-current-env --nbval-sanitize-with test/.nbval_sanitize.cfg
This could take more than 10 minutes, please be patient.
Migration Guide
Migrating guide for readers of LAGA&VAGC
Readers of Linear and Geometric Algebra and Vector and Geometric Calculus might be guided by GAlgebra Primer (version November 29, 2022, accessed May, 2024) to download GAfiles.zip and copy gprinter.py, lt.py, mv.py, and GAlgebraInit.py¸ into where GAlgebra is installed.
These steps are NO LONGER NEEDED since GAlgebra 0.6.0 as they are merge into GAlgebra with tests, copying these files will cause conflicts and regressions of fixed bugs. Instead, you may follow the following steps:
pip uninstall galgebra
pip install git+https://github.com/pygae/galgebra.git
GAlgebra will be installed as 0.6.0-dev as 0.6.0 has not yet been finalized and published to PyPI.
For minor differences to those files, please check out the change log for GAlgebra 0.6.0. Also please note that:
GAlgebraInit.pyis renamed toprimer.pyand can be imported likefrom galgebra.primer import *but it's usage is discouraged, although it saves some boilerplate code, this is not part of GAlgebra's maintained API, GAlgebra might remove it in future.- Some notebooks from the zip are included in GAlgebra in
examples/primer.
Bundled Resources
Note that in the doc/books directory there are:
BookGA.pdfwhich is a collection of notes on Geometric Algebra and Calculus based of "Geometric Algebra for Physicists" by Doran and Lasenby and on some papers by Lasenby and Hestenes.galgebra.pdfwhich is the original main doc of GAlgebra in PDF format, while the math part is still valid, the part describing the installation and usage of GAlgebra is outdated, please read with caution or visit https://galgebra.readthedocs.io/ instead.Macdonaldwhich contains bundled supplementary materials for Linear and Geometric Algebra and Vector and Geometric Calculus by Alan Macdonald, see here and here for more information.- Particularly,
GAlgebraPrimer.pdfis an archived version of GAlgebra Primer by Alan Macdonald, last updated on November 29, 2022.
- Particularly,
Star History
Contributors
Made with contrib.rocks.
Citing This Library
For citation information, see our CITATION.md file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file galgebra-0.6.0.tar.gz.
File metadata
- Download URL: galgebra-0.6.0.tar.gz
- Upload date:
- Size: 114.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e8db0172286bcb7ff6d37c4d7e99476ffe178570dea78a2345d34cc78da10f1
|
|
| MD5 |
f6bd1a266acf7ca6425d88b7bf3c86c7
|
|
| BLAKE2b-256 |
def832e61f3ce0446eef026e9c457ad9d1f03584e8a0db24d218f8eecdfec43a
|
Provenance
The following attestation bundles were made for galgebra-0.6.0.tar.gz:
Publisher:
ci.yml on pygae/galgebra
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
galgebra-0.6.0.tar.gz -
Subject digest:
2e8db0172286bcb7ff6d37c4d7e99476ffe178570dea78a2345d34cc78da10f1 - Sigstore transparency entry: 1205371041
- Sigstore integration time:
-
Permalink:
pygae/galgebra@12e083428de5dc198212166d1ea5d020fa7d9da7 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/pygae
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@12e083428de5dc198212166d1ea5d020fa7d9da7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file galgebra-0.6.0-py3-none-any.whl.
File metadata
- Download URL: galgebra-0.6.0-py3-none-any.whl
- Upload date:
- Size: 119.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7449881e780025445bdfee70d238bc201be6e8137a59f058abd334264be40b7
|
|
| MD5 |
cb16d67def7f3186b0f87bb16154d0f2
|
|
| BLAKE2b-256 |
3b3c2aa9163b294d6a6294dcf533a661fa13030c46c3223b072a37118df71444
|
Provenance
The following attestation bundles were made for galgebra-0.6.0-py3-none-any.whl:
Publisher:
ci.yml on pygae/galgebra
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
galgebra-0.6.0-py3-none-any.whl -
Subject digest:
e7449881e780025445bdfee70d238bc201be6e8137a59f058abd334264be40b7 - Sigstore transparency entry: 1205371626
- Sigstore integration time:
-
Permalink:
pygae/galgebra@12e083428de5dc198212166d1ea5d020fa7d9da7 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/pygae
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@12e083428de5dc198212166d1ea5d020fa7d9da7 -
Trigger Event:
push
-
Statement type: