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 Primes¶
Parents (2) — more general patterns this builds on
- Linear Combination is a kind of, typical Aggregation — The file: 'Not aggregation in general — aggregation may combine by any rule (max, median, nonlinear); a linear combination is the SPECIFIC weighted-sum-with-no-interactions assembly.' LC is the additive, weight-indexed member of the aggregation family.
- Linear Combination presupposes, typical Superposition — The file: 'A linear combination is superposition PLUS the scaling step.' Superposition supplies the additive-overlay half; the weight vector is what LC adds. (NOTE: canon
superpositionis the quantum/coexisting-states prime — owner verifies this is the right superposition sense; tentative.)
Children (1) — more specific cases that build on this
- Linear Independence presupposes Linear Combination — Linear independence is DEFINED via the weighted-combination operation (the only weighted sum equal to zero is trivial); it presupposes linear_combination as the operation under which redundancy is defined. linear_combination is a candidate (this batch, CAND-R2-067-09).
Path to root: Linear Combination → Superposition
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 superposition plus the scaling step, whereas superposition alone is the additive-overlay principle without the weight vector.
- 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.