| // tends to attract a lot of crackpot. // Come on. You know what else attracted a lot of crackpots? The internet. If you are criticizing math, criticize the math, not the people. // just learn exterior algebra instead of// YMMV, but I like to know where the mathematical concepts came from. GA gives a nice origin story, see below: // Most of the usefulness of GA comes from just exterior algebra // Dot products come from the geometric product. If e1 & e2 are two basis vectors such that e1*e1 = 1, and e1e2 = -e2*e1, then if you multiply two vectors: (a1*e1 + a2*e2)(b1*e1 + b2*e2) = a1*b1*e1*e1 + a1\b2*e1*e2 a2*b1*e2*e1+ a2*b2*e2*e2 = a1*b1 + a2*b2 + (a1*b2 - b2*a1)*e1*e2 = (a . b) + (a ^ b) The first is the dot product. The second is the exterior product that everybody agrees is so useful. Now you know where both concepts came from. They are just from multiplying polynomials. The geometric product is a *a product*, it's the product of two polynomials. Yes, sometimes you just need the dot product, and sometimes you just need the exterior product. If you are coding, or giving the final form of some formula, you don't have to always put both of them in your code or paper. But neither the dot product nor the wedge product are investable by themselves. Having an investable product on vectors is endlessly useful while you are *deriving* the formulas.* |
In my experience 99% of the time you just want the dot product or the exterior product. Even when you want both it is rare that you want to combine them linearly except in some niche physics/mathematics.
> But neither the dot product nor the wedge product are investable by themselves. Having an investable product on vectors is endlessly useful while you are deriving the formulas.
Do you mean invertible? Why is invertibility is so useful?