Andromeda
Note

Linear Homogeneous Equations

Definition

A linear homogeneous equation (or system of equations) is one in which all terms are of the first degree in the unknown variables, and the constant term—the term completely independent of the unknown variables—is strictly zero. In matrix form, it is represented as a system where the right-hand side is the zero vector.

Ax=0A\mathbf{x} = \mathbf{0} How to read: Matrix A times vector x equals the zero vector. Meaning / when to use: Used to find the null space (or kernel) of a matrix AA. It models systems that are completely self-contained with no external forcing functions or sources.

Why It Matters

Linear homogeneous equations are the backbone of differential equations and linear algebra. They describe the natural, unforced behavior of a system—how a pendulum swings when left alone, or how a circuit rings after power is cut. Solving the homogeneous equation is always the mandatory first step before you can solve the more complex non-homogeneous equation (which includes external forces).

Core Concepts

  • Trivial Solution: The vector x=0\mathbf{x} = \mathbf{0} is always a guaranteed solution to any linear homogeneous equation.
  • Superposition Principle: If x1\mathbf{x_1} and x2\mathbf{x_2} are solutions, then any linear combination c1x1+c2x2c_1\mathbf{x_1} + c_2\mathbf{x_2} is also a solution. This is the defining characteristic of linearity.
  • Null Space / Kernel: The set of all non-trivial solutions forms a vector space called the null space. If the matrix AA is invertible, the null space only contains the trivial solution.
  • Eigenvalue Connection: Finding the eigenvalues of a matrix involves solving the homogeneous system (AλI)x=0(A - \lambda I)\mathbf{x} = \mathbf{0}.

Connected Concepts