Solution Sets and Applied Linear Systems
A homogeneous system Ax = 0 has a solution set that is a span through the origin; a consistent Ax = b has that same span translated by any one particular solution. Parametric vector form writes both explicitly.
╌╌╌╌
The reduced echelon form delivers a general solution as a list of formulas. Written instead as a vector equation — the parametric vector form — that solution exposes its geometry. Solution sets are flat objects (lines, planes, and their higher-dimensional analogues), passing through the origin when the system is homogeneous and shifted off it when it is not. The same structure organizes applied systems that carry many solutions.
Homogeneous systems
A system is homogeneous if it has the form . Every such system has the trivial solution , so the only question of interest is whether it has any others.
This is the existence and uniqueness theorem applied to a system that is automatically consistent: a solution always exists, so only uniqueness is in question, and uniqueness fails exactly when a variable is free.
Parametric vector form
Every solution is a scalar multiple of the single vector , so the solution set is — a line through the origin. A homogeneous system with two free variables produces two vectors and a plane through the origin. The general statement:
Nonhomogeneous systems: particular plus homogeneous
When has many solutions, its general solution splits into a fixed part and a varying part.
The vector is one particular solution (set ), and traces out the solution set of the homogeneous equation from before. The solution set of is the homogeneous line translated by .
The proof is one line each way. If and , then , so every such sum is a solution; and if , then satisfies , so .1
The mental image for a consistent with is a point, line, or plane that does not pass through the origin. When the system is inconsistent, the solution set is empty and the theorem does not apply.
- 1row reduce to reduced echelon form
- 2for each basic variable do
- 3express it in terms of the free variables appearing in its row
- 4write a typical solution as a vector in the free variables
- 5split intofree vars as parameters
- 6return
The homogeneous solution set is the shape and the particular solution is the position.
| Homogeneous | Nonhomogeneous | |
|---|---|---|
| Always consistent? | yes (trivial solution) | no — may be inconsistent |
| Passes through origin? | yes | no, unless |
| Parametric form | ||
| Geometric object | span through | that span translated by |
| Number of parameters | one per free variable | one per free variable (same ) |
Applied systems with many solutions
Real models often produce free variables, and each carries meaning: a degree of freedom that some side condition (integer coefficients, nonnegative prices, a known total inflow) resolves to a definite value.
Equilibrium prices (Leontief exchange model)
Divide an economy into sectors. Each sector's output is distributed among the sectors as fractions summing to . An equilibrium assigns a price to each sector's total output so that every sector's income equals its expenditures. For a Coal / Electric / Steel economy with the given exchange fractions, the balance equations, moved to one side, form a homogeneous system
Row reduction gives , , with free. The free variable is a choice of scale (the currency and overall magnitude); taking prices Coal at , Electric at , Steel at . Every homogeneous exchange model has this structure, and Leontief proved such a nonnegative equilibrium always exists.2
Balancing a chemical reaction
Atoms are conserved, so the coefficients of a reaction must equalize each element's atom count on both sides. Represent each molecule by its vector of atom counts.
Network flow
A network is junctions joined by directed branches. The conservation rule is that flow into each junction equals flow out, and total flow into the network equals total flow out. Each junction contributes one linear equation. For a grid of one-way streets with measured inflows and outflows, labeling the unknown branch flows and balancing at each intersection yields a system whose general solution carries a free variable — the flow is underdetermined by the boundary data alone.
Because the streets are one-way, all , and that constraint plus the free variable pins the flows to a range rather than a single value. Electrical networks fit the same mold: Kirchhoff's voltage law makes the loop currents satisfy a linear system , a matrix form of Ohm's law.3
A nutrition model
A weight-loss diet must supply exact amounts of several nutrients using a few foodstuffs, each with its own nutrient profile. With one vector per foodstuff listing grams of each nutrient per unit, and the required daily totals, the diet is the solution of
where is the number of units of foodstuff . For three ingredients and three nutrients this is a square system; row reduction gives a unique nonnegative solution when the profiles are independent. The nonnegativity requirement (a negative amount of whey is meaningless) is a real constraint that drives the choice of ingredients.
Difference equations and migration
A linear difference equation models a system sampled at discrete times by a sequence of state vectors with
For city-versus-suburb populations where each year a fixed fraction migrates each way, the migration matrix collects those fractions, and iterating propagates the population forward.
Starting from , one step gives , another gives , and so on. The long-run behavior of such iterations — whether the state settles to a steady distribution — is an eigenvalue question, studied alongside difference equations and Markov chains.
Footnotes
- Lay, Linear Algebra and Its Applications, §1.5 — Solution Sets of Linear Systems: homogeneous solutions in parametric vector form as a span, and the theorem that a consistent nonhomogeneous solution set is the homogeneous solution set translated by a particular solution. ↩
- Lay, §1.6 — Applications of Linear Systems: the Leontief exchange model for equilibrium prices, balancing chemical equations by a homogeneous vector equation, and conservation-law network flow. ↩
- Lay, §1.10 — Linear Models in Business, Science, and Engineering: the nutrition/diet vector equation, Kirchhoff's-law electrical networks as , and the migration difference equation . ↩
╌╌ END ╌╌