index 7e37696..2d3f20a 100644
@@ -8,28 +8,28 @@ visibility: public-edit
i wrote that in a chinese class essay about 无用之用 — the usefulness of the useless. the prompt was about why math matters, and my answer surprised me: it's not about computing things. it's about seeing things.
-a lot of advanced math — [[structural/calculus-as-thinking|calculus]], [[structural/linear-algebra-as-thinking|linear algebra]], [[structural/set-theory-as-thinking|set theory]] — is really just an organizational lens applied to very normal things. velocity is calculus applied to position. a recommendation engine is linear algebra applied to preferences. a venn diagram is set theory applied to categories. the math doesn't create the structure — it reveals structure that was already there.
+a lot of advanced math — [[calculus-as-thinking|calculus]], [[linear-algebra-as-thinking|linear algebra]], [[set-theory-as-thinking|set theory]] — is really just an organizational lens applied to very normal things. velocity is calculus applied to position. a recommendation engine is linear algebra applied to preferences. a venn diagram is set theory applied to categories. the math doesn't create the structure — it reveals structure that was already there.
## the vector space example
the clearest example i know: semantic space. take a word — any word — and represent its meaning as a vector. now you can do math on meanings.
-dot product tells you how similar two meanings are. vector addition creates new meanings: "woman" + "king" - "man" = "queen." that's not a trick — it's [[structural/linear-algebra-as-thinking|linear algebra]] applied to language, and it works because language has geometric structure that was invisible until someone thought to look for it.
+dot product tells you how similar two meanings are. vector addition creates new meanings: "woman" + "king" - "man" = "queen." that's not a trick — it's [[linear-algebra-as-thinking|linear algebra]] applied to language, and it works because language has geometric structure that was invisible until someone thought to look for it.
this is what word embeddings do. this is what makes modern AI work. and it's fundamentally an organizational insight: meanings have directions, and those directions live in a space you can navigate mathematically.
## what the lens does in practice
-when i'm doing math modeling for [[stem/engineering-and-modeling|HiMCM or MCM/ICM]], the hardest part is never solving the equations. it's figuring out which equations to write. that's the organizational lens — looking at a messy real-world problem (fire evacuation, drone routing, bus equity) and asking: what kind of structure does this have?
+when i'm doing math modeling for [[engineering-and-modeling|HiMCM or MCM/ICM]], the hardest part is never solving the equations. it's figuring out which equations to write. that's the organizational lens — looking at a messy real-world problem (fire evacuation, drone routing, bus equity) and asking: what kind of structure does this have?
-- is it changing over time? → [[structural/calculus-as-thinking|calculus]]
-- does it have multiple interacting dimensions? → [[structural/multivariable-calculus-as-thinking|multivariable calculus]]
-- is it about categories and membership? → [[structural/set-theory-as-thinking|set theory]]
-- does it have directions, transformations, stability? → [[structural/linear-algebra-as-thinking|linear algebra]]
-- does it have symmetry? → [[structural/symmetry-and-groups|group theory]]
-- does it have shape that matters more than measurement? → [[structural/topology-as-thinking|topology]]
+- is it changing over time? → [[calculus-as-thinking|calculus]]
+- does it have multiple interacting dimensions? → [[multivariable-calculus-as-thinking|multivariable calculus]]
+- is it about categories and membership? → [[set-theory-as-thinking|set theory]]
+- does it have directions, transformations, stability? → [[linear-algebra-as-thinking|linear algebra]]
+- does it have symmetry? → [[symmetry-and-groups|group theory]]
+- does it have shape that matters more than measurement? → [[topology-as-thinking|topology]]
-answering "what kind of problem is this?" correctly is more than half the work. the rest is technique. [[immediate/patterns-and-estimation|pattern recognition]] gets you the first foothold — the rough shape before you formalize. the organizational lens is what turns that rough shape into a mathematical frame.
+answering "what kind of problem is this?" correctly is more than half the work. the rest is technique. [[patterns-and-estimation|pattern recognition]] gets you the first foothold — the rough shape before you formalize. the organizational lens is what turns that rough shape into a mathematical frame.
## beyond math