Post #1815119
2026-04-26 21:07 UTC
Replies (6)
-
@sjb@mstdn.io 2026-04-26 21:18
@dpiponi@mathstodon.xyz Algebra is based on unknowns: e.g. x being a variable instead of writing 3. These examples are what happens when multiplication operator is an "unknown", and when a bilinear function is an unknown. They're just more complex unknowns.
-
@iblech@mathstodon.xyz 2026-04-27 05:44
@dpiponi@mathstodon.xyz Very nice point of view! Also neatly visible in the construction of the free functor on a type constructor t :: Type → Type: data FreeF t a = MkFreeF (exists r. (t r, r → a)) A value of type FreeF t a consists of a type r, a value x :: t r and a function f :: r → a. We're recording which function r → a we'd like to apply to x via functorial lift at some point in the future, once we have a map from t to an actual functor.
-
@ohad@mathstodon.xyz 2026-04-27 06:51
@dpiponi@mathstodon.xyz Yup, I'm planning to pursue this perspective in my short course Algebra and Normalisation at this year's Scottish Proframming Languages and Verification summer school in Glasgow https://spli.scot/splv/2026-glasgow/ This is also the perspective we take in the various frex papers and abstracts (ICFP18, PEPM20+23, ICFP25).
-
@theohonohan@graphics.social 2026-04-27 07:54
@dpiponi@mathstodon.xyz it's funny, i thought of Kan extensions when reading the first part of this. My understanding/example is that in a "tech tree" setting where morphisms describe which technologies depend on which, and everything maps to its year of invention, a left Kan extension to some new set of inventions will take a limit of the new invention's dependencies – which might look like a product (the set of years in which the prerequisites were invented), or the max of the dates if they're ordered.
-
@mjd@mathstodon.xyz 2026-04-27 08:27
@dpiponi@mathstodon.xyz This reminds me of the observation that there's a representation of numeric quantities that can perform both addition and multiplication of numbers in constant time, but it's useless for numeric calculation because there's no corresponding algorithm for the ≤ relation. (The representation being expression trees with numbers at the leaves.)
-
@mjd@mathstodon.xyz 2026-04-27 16:02
@dpiponi@mathstodon.xyz This also fits in well with nebulous ideas I've had about the fundamental purpose of mathematical notation in general. Often we solve problems by writing an expression and then transforming it into a different expression. To take the first example that comes to mind, consider \[ \sum_{i=1}^n = \frac{n^2+n}2 \] And this is interesting because, as you put it, it has precomputed as much as possible when n is still unknown.