Under
a change of perspective
definition uu g f = `gfg
X under Y is the answer to the question what's the transformation that, when transformed by the morphism Y, becomes X?
examples
- "setup" moves in cubing is performing an algorithm under those setup moves --- https://youtu.be/rZiDvDGHfe8&t=243
- the under modifier in BQN --- https://mlochbaum.github.io/BQN/doc/under.html and https://youtu.be/Hecqsl3GG9s?t=8m57s
- solving "word problems" by translating them into equations, solving, then translating back
- using fourier transforms to filter out signal noise --- https://youtu.be/gAPlRlmhXyI?t=5m28s
- using Laplace transforms to solve differential equations --- https://youtu.be/1u5Z1oap1g8?t=6m1s
- conjugate elements in group theory --- https://en.wikipedia.org/wiki/Conjugacy_class#Definition
- similar matrixes in linear algebra --- https://en.wikipedia.org/wiki/Conjugacy_class#Definition
- a vertical flip under a quarter turn is a horizontal flip --- https://youtu.be/eLhsyAu7G-U&t=1125
- the Enigma machine. and
f, the reflector, is an involution, and thus so isuu g f- duals. boolean › disjunction under boolean › negation is boolean › conjunction
examples
interesting thing I noticed:
(*)(:-#)(*)is an arithmetic mean #todo id(-)(:-#)(-)is a harmonic mean[.](:-#)/.\is a geometric mean\./(:-#)[]2is a quadratic mean\/3(:-#)[]3is a cubic mean #todo math notation for cubic root(*)dd(*)is a derivative (gives theminx -> mx : b) #todo id(-)dd(-)is a "reciprocal" derivative (gives theainx -> a -- x : b)[.]dd/.\is an exponential derivative (gives thebinx -> ab[x])define
uu g f = `gfg. then,
uu (*) (:-#)is an arithmetic mean #todo iduu (-) (:-#)is a harmonic meanuu /.\ (:-#)is a geometric meanuu []2 (:-#)is a quadratic meanuu []3 (:-#)is a cubic meanuu (*) ddis a derivative (gives theminx -> mx : b) #todo iduu (-) ddis a "reciprocal" derivative (gives theainx -> a -- x : b)uu /.\ ddis an exponential derivative (gives thebinx -> ab[x])