jupytext | kernelspec | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
We were looking for a GA model for Cholesky repr of a symmetric mat. A symmtric mat
Lets ignore the strains (
We did some chatgpt'ing and we know that a rotation in null bivector implements a shear. so we guessed to use G(N,0,1) and brute force found some nilpotents as show below. the patern and meaning is to be found.
from kingdon import Algebra
alg = Algebra(3, 0,1)
locals().update(alg.blades)
X = e2*(1 + e1*(1 + e0))
[print(f'X^{n} : {(X)**n}') for n in range(1,5)];
from kingdon import Algebra
alg = Algebra(4, 0,1)
locals().update(alg.blades)
Z = e2*(1 + e1*(1 + e0))
Y = e4*(1 + e3*(1 + e0))
X = Z + e0*Y
[print(f'X^{n} : {(X)**n}') for n in range(1,5)];