Linear Combination¶
Core Idea¶
A linear combination is the simplest non-trivial way to build a new object from given ones: scale each by a chosen weight, then add the scaled pieces. The weight vector becomes the only design surface; every component contributes additively, with no interactions — making attribution, sensitivity, and the span of reachable composites straightforward.
How would you explain it like I'm…
Paint Mixing
Scale-and-Add Recipe
Weighted Sum of Parts
Broad Use¶
- Mathematics and physics: vector-space spans, Fourier bases, eigen-decompositions, and superposed solutions to linear differential equations.
- Machine learning: linear regression as a weighted sum of features, principal components, and ensemble blends.
- Finance: a portfolio as a weighted sum of asset positions, with mean-variance optimisation choosing the weights.
- Composite indicators: the Human Development Index and consumer price index as chosen weighted averages.
- Voting: weighted voting, Borda counts, and score voting as convex combinations.
- Chemistry: the molecular orbital built by linear combination of atomic orbitals.
Clarity¶
Converts vague "we'll blend these inputs" talk into a precise set of questions — what are the atoms, what are the weights, what does the composite mean, and which weights are allowed (arbitrary, non-negative, convex) — while foregrounding the additivity assumption the whole construction rests on.
Manages Complexity¶
Reduces a potentially explosive parameter space — all functions of N inputs — to a tractable one of N weights, giving each component an independently interpretable marginal contribution and supplying closed-form optimisation in many cases.
Abstract Reasoning¶
Trains a reasoner to decompose any composite into atoms and weights, to recognise which weight constraint (span, convex, conic, integer) a problem imposes, and to read sensitivity off the corresponding atom — while carrying the warning that interactions, thresholds, or saturations break the weighted-sum view.
Knowledge Transfer¶
- Finance: atoms = assets, weights = capital fractions, span = the reachable risk-return frontier — carrying the caveat that returns sum additively but risks do not.
- Chemistry: atoms = atomic orbitals, weights = mixing coefficients, composite = the molecular orbital.
- Policy: atoms = component measurements, weights = chosen scalars — exposing arbitrary weights as the load-bearing vulnerability of any index.
Example¶
A stock portfolio: the atoms are assets, the weight vector is the fraction of capital in each, the constraint (no shorting, fully invested) makes it a convex combination, and the span is the reachable risk-return frontier — with the portable caveat that variance carries covariance cross-terms, so first-moment linearity does not imply second-moment linearity.
Relationships to Other Abstractions¶
Current abstraction Linear Combination Prime
Parents (1) — more general patterns this builds on
-
Linear Combination is a kind of Aggregation Prime
Every Linear Combination is aggregation specialized to scaling each input by a weight and adding the results with no interaction terms.
Children (7) — more specific cases that build on this
-
Algebraic Cycle Domain-specific is a kind of Linear Combination
prime:linear_combinationsupplies the formal scale-and-add skeleton; algebraic cycles specialize it to integer coefficients and subvariety generators. -
Equivalent Dose Domain-specific is a kind of Linear Combination
Measurement is instantiated through assessed absorbed doses and the disciplined production of a reportable quantity.
-
Statistical Contrast Domain-specific is a kind of Linear Combination
Instantiates
prime:contrast. The coefficient vector formalizes an emphasized comparative difference among statistical targets. -
Mathematical Flow Graph Domain-specific presupposes Linear Combination
Linear Combination — presupposes by strict composition. Mason node equations add weighted predecessor variables, while Coates starts from linear matrix relations.
-
Linear Independence Prime presupposes Linear Combination
Linear Independence presupposes Linear Combination, whose structure must already obtain for the child mechanism to be meaningful or operational.
- Selection Vs Transmission Decomposition Prime presupposes Linear Combination
The identity presupposes linear combination because its population mean and within-unit term are weighted sums over units.
- Superposition Prime presupposes Linear Combination
Superposition presupposes Linear Combination because its coexisting state is represented as a weighted sum of basis states before resolution.
Hierarchy path (1) — routes to 1 parentless root
- Linear Combination → Aggregation → Micro Macro Linkage
Not to Be Confused With¶
- Linear Combination is not Linearity because a linear combination is a construction you build, whereas linearity is a property a transformation may or may not have.
- Linear Combination is not Superposition because a linear combination is the scale-and-add construction itself, whereas Superposition uses a weighted combined state and adds coexistence, interference, and a collapse or commitment boundary; a superposed state can be represented by a linear combination, but a portfolio or index need not be a superposition.
- Linear Combination is not a Basis because a linear combination is one combination of any atoms, whereas a basis is a minimal independent generating set granting unique coordinates.