Clifford algebras in Julia
In this blog post, we will explore the Grassmann.jl library written in Julia for working with Clifford algebras. First, we import the library and the GLMakie plotting library. using Grassmann using GLMakie set_theme!(theme_light()) The following code constructs a positive definite 3-dimensional TensorBundle with an additional plane at infinity: @basis S"∞+++" (⟨∞111⟩, v, v∞, v₁, v₂, v₃, v∞₁, v∞₂, v∞₃, v₁₂, v₁₃, v₂₃, v∞₁₂, v∞₁₃, v∞₂₃, v₁₂₃, v∞₁₂₃) then plot the following vector field:...