new file mode 100644
index 0000000..7086d80
@@ -0,0 +1,55 @@
+---
+visibility: public-edit
+---
+
+# engineering and modeling
+
+"all models are wrong, but some are useful." — george box
+
+this is the most important sentence in applied math. a model is a mathematical simplification of reality. it's wrong by definition — reality is messier than any equation. but if it captures the right aspects of reality, it's useful. engineering is the art of building models that are wrong in the right ways.
+
+## math modeling competitions
+
+i've competed in HiMCM and MCM/ICM (the high school and college math modeling competitions). these are 4-5 day events where you get an open-ended problem — something like "model the spread of an invasive species" or "optimize emergency evacuation routes" — and have to build a mathematical model from scratch.
+
+the process teaches you something textbooks don't: choosing what to model and what to ignore. a model that includes everything is just reality, and you can't solve reality. the skill is identifying the 3-4 variables that matter most and writing down the simplest equations that capture their relationships.
+
+[estimation](/wiki/immediate/patterns-and-estimation) is the first step — sanity-checking that your model gives reasonable outputs before you trust it with anything important.
+
+## monte carlo simulation
+
+some problems are too complex for exact solutions. monte carlo methods handle them by running thousands of random simulations and looking at the statistical results.
+
+want to estimate π? throw random darts at a unit square. count how many land inside the inscribed circle. the ratio approaches π/4. want to price a financial option? simulate thousands of possible stock price paths and average the payoffs. want to assess flood risk? generate thousands of possible weather scenarios and see how often the levee fails.
+
+monte carlo is powerful because it converts analytical difficulty into computational cost. you don't need to solve the equation — you just need to simulate it enough times. this connects to [probability](/wiki/immediate/probability-in-daily-life): monte carlo is basically "run the experiment a million times in silico."
+
+## optimization
+
+most engineering problems are optimization problems: minimize cost, maximize efficiency, find the best design subject to constraints.
+
+linear programming alone (optimizing a linear function subject to linear constraints) underlies scheduling, supply chain management, and resource allocation across every major industry. the simplex method, which solves these, is one of the most practically important algorithms ever invented.
+
+nonlinear optimization is harder — you might get stuck in local minima. [gradient descent](/wiki/structural/multivariable-calculus-as-thinking) is the workhorse method: follow the slope downhill. it's how neural networks are trained, how engineers design aircraft wings, and how economists find market equilibria.
+
+## spectral methods
+
+the fourier transform decomposes any signal into a sum of sine waves at different frequencies. this is the mathematical backbone of:
+- audio processing (your music is stored as frequency data, not raw waveforms)
+- image compression (JPEG uses a related transform, the DCT)
+- signal processing (filtering noise from an EEG or radio signal)
+- structural engineering (resonance analysis — at what frequency does a bridge vibrate dangerously?)
+
+in my EEG research for the anesthetics paper, signal processing was critical. brain signals are noisy — you need to extract meaningful patterns from messy electrical data. fourier analysis and wavelet transforms let you decompose the signal into frequency bands (delta, theta, alpha, beta, gamma) that correspond to different brain states. the CNN then learns patterns in these transformed signals.
+
+## differential equations in engineering
+
+heat transfer, fluid dynamics, structural mechanics, circuit analysis, chemical reactions — all governed by differential equations. the navier-stokes equations (fluid flow) are so important and so hard that solving them is another millennium prize problem.
+
+engineers rarely solve these equations analytically. they discretize them — break continuous space into a mesh of points — and solve the resulting system numerically. finite element analysis, finite difference methods, and computational fluid dynamics are all "convert a continuous math problem into a very large but solvable discrete math problem."
+
+this is where [calculus](/wiki/structural/calculus-as-thinking) meets [linear algebra](/wiki/structural/linear-algebra-as-thinking): discretizing a differential equation turns it into a matrix equation. the continuous meets the discrete, and the computer handles the rest.
+
+## the deep point
+
+engineering is where mathematical abstraction crashes back into physical reality. the model has to work. the bridge has to stand. the prediction has to be close enough. this creates a productive tension between mathematical elegance and practical necessity — and it's why the modeling mindset ("what can I ignore? what matters most? how wrong is acceptable?") is one of the most transferable skills math teaches.
\ No newline at end of file