seegongsik
Saved words
seegongsik
engineering math · the shared toolkit

Every engineer's toolkit

Before your major: see the formulas, then use them fast.

49 / 49
Linear algebra and matricesvectors, transforms, eigenvalues, decompositions
01A Vector Is a Movement
A vector is a movement and a list of numbers, built from basic directions
#GPS coordinates#drone flight#game movement
02Linearity Is Permission to Break Things Apart
Split it, solve the parts, add them back — same answer; the basis of everything
#audio mixing#signal decomposition#image filter
03Matrices Are Transformations
A matrix isn't a table; it moves all of space at once
#game graphics#image rotation#robot arm
04The Determinant Is Area Scaling
The determinant is how much a transformation scales area
#3D rendering#map scale#image zoom
05A System Is a Transformation Run Backwards
Solving a system is rewinding the transformation to find the input
#circuit analysis#structural design#navigation
06Eigenvectors Are the Directions That Don't Turn
The directions a transformation only stretches, never turns (λ = the stretch)
#Google PageRank#face recognition#building sway
07Coordinates Are a Point of View
The same vector gets different coordinates depending on the basis that reads it; the right basis makes a transformation simple
#basis change#feature space#data representation
08Projection Is the Nearest Shadow
A projection is the nearest point on a line or plane and the leftover is always perpendicular; stack it over data and you get least squares
#least squares#regression#orthogonal projection
09SVD Is Rotate, Stretch, Rotate
Any matrix is three steps, rotate then stretch along axes then rotate, and the unit circle becomes an ellipse whose radii are the singular values
#SVD#dimensionality reduction#compression
10PCA Finds the Directions of Most Spread
Find the directions where data spreads most; the principal components are the eigenvectors of the covariance matrix, and keeping them reduces dimension
#PCA#eigenvectors#dimensionality reduction
11The Dot Product Measures Alignment
The dot product bundles length and alignment at once; strip the lengths and you get cosine similarity, the core of search and recommendation
#cosine similarity#embeddings#recommendation
12An Inner Product Gives a Space Its Geometry
The inner product is the general structure that defines length, angle, and orthogonality; change the weights and the geometry bends, and even functions become vectors
#inner product#norm#Fourier
13Gram-Schmidt Straightens a Skewed Basis
Build an orthonormal basis from a skewed one by subtracting off projections; this is exactly the Q of QR
#orthonormal basis#orthogonalization#QR
14QR Splits a Matrix into a Rotation and a Triangle
A = QR splits a matrix into an orthonormal Q and an upper-triangular R, solving least squares stably
#QR decomposition#orthogonal matrix#least squares
15The Determinant Grows into Volume
Beyond 2x2 area to signed n-dimensional volume; compute by cofactor expansion and solve systems with Cramer rule
#cofactor expansion#Cramer rule#signed volume
16Tensors Are the Ladder Beyond Numbers, Vectors, and Matrices
Scalars, vectors, and matrices are the first rungs of the tensor ladder; the outer product makes rank-1 and a matrix is their sum
#tensor#outer product#multilinear
17Diagonalization Leaves Only Stretching in the Eigenbasis
A = PDP⁻¹ makes a transformation pure stretching in the eigenbasis; a symmetric matrix diagonalizes with perpendicular eigenvectors
#diagonalization#spectral theorem#matrix powers
18A Matrix Splits Space into Four Subspaces
It splits into column, null, and row spaces with rank + nullity = n, deciding whether a system has zero, one, or infinitely many solutions
#column space#null space#rank-nullity
19A Quadratic Form Is a Bowl Shaped by Eigenvalues
xᵀAx is a bowl whose axes are eigenvectors and whose curvature is the eigenvalues; their signs decide minimum, maximum, or saddle
#quadratic form#positive definite#optimization
Complex numbers and analysisrotation, exponentials, conformal maps
Differential equationsslope fields, oscillation, phase plane
Vector calculusfields, divergence, curl, big theorems
27A Field Pins a Value to Every Point
A scalar field is a number per point, a vector field an arrow per point; a field is a function and a flow
#weather map#fluid flow#temperature map
28The Gradient Points Straight Uphill
The direction the value rises fastest; perpendicular to contours; −∇f is descent; ∇f=0 is the optimum
#gradient descent#heat flow#trail design
29Divergence Is the Net Outflow
The net outflow at a point; a source is positive, a sink negative; the flux of a tiny loop is the divergence
#fluid divergence#source and sink#airflow
30Curl Is the Local Swirl
The strength and sense of the local swirl; counter-clockwise is positive, clockwise negative; the circulation of a tiny loop is the curl
#vortex#turbulence#swirling flow
31A Line Integral Sums Along a Path
The work a vector accumulates along a path; path-dependent in general, but path-independent in a conservative field
#work done#conservative field#path dependence
32The Big Theorems Tie Inside to Boundary
The divergence summed inside equals the flux on the boundary, the curl inside equals the circulation; Gauss and Stokes tie inside to boundary
#Gauss theorem#Stokes theorem#conservation law
33The Laplacian Measures the Gap from the Average
How far a point sits above or below its neighbors; the divergence of the gradient, behind diffusion and harmonic functions
#heat diffusion#harmonic functions#image blur
34A Conservative Field Flows from a Potential
A curl-free field is the gradient of a potential, is path-independent, and its closed-loop integral is zero
#potential energy#gravity field#energy conservation
35A Gradient Never Swirls, a Curl Never Spreads
The curl of a gradient and the divergence of a curl are always zero; any field splits into a source part and a swirl part
#Helmholtz decomposition#stream function#vector potential
36The Big Theorems Live in 3D
Flux through a surface; the divergence theorem sums divergence over a volume, and Stokes ties boundary circulation to curl over a surface
#Gauss theorem#Stokes theorem#fluid dynamics
Probability and statisticssample space, distributions, mean, normal
Numerical methods and approximationTaylor, Newton, Euler, error
41Taylor Mimics a Curve with a Polynomial
Stack a polynomial around a point to mimic the curve; error grows as you leave the center
#small-angle#calculators#machine-learning
42A Series Breaks Down Far Away
A power series gathers to one value inside its radius and diverges outside; the ratio test and the boundary
#power-series#convergence#signal-approx
43Newton Chases the Root Down the Tangent
Jump where the tangent points to reach a root fast, with failure cases and basins of attraction
#root-finding#optimization#solvers
44Iteration Is Pulled to a Fixed Point
Send x through g(x) again and again and it converges to a fixed point when the slope is under 1
#iteration#contraction#PageRank
45Euler Walks One Slope-Step at a Time
Step straight along a differential equation's slope; a big step makes the error explode
#ODE-solver#simulation#physics-engine
46Quadrature Measures Area in Strips
Rectangles, trapezoids and Simpson measure the area under a curve; more strips means more accuracy
#integration#Simpson#data-analysis
47Step Size Decides the Error
Error shrinks by the method's order in the step size; accuracy versus stability versus cost
#order#stability#roundoff
48Interpolation Threads a Curve Through the Points
Fill the gaps with a function through the points; Lagrange bases, the Runge phenomenon, Chebyshev nodes and splines
#CAD-curves#animation#resampling
49A Computer Only Knows Numbers Approximately
The limits of a computer's floating point; machine epsilon, round-off accumulation, catastrophic cancellation and conditioning
#stability#precision#debugging
Was this helpful? Support seegongsik