
|
|
System of linear equationsIn mathematics and linear algebra, a system of linear equations is a set of linear equations such as
The problem is to find those values for the unknowns x1, x2 and x3 which satisfy all three equations simultaneously. Systems of linear equations belong to the oldest problems in mathematics and they have many applications, such as in digital signal processing, estimation, forecasting and generally in linear programming and in the approximation of non-linear problems in numerical analysis. An efficient way to solve systems of linear equations is given by the Gauss-Jordan elimination or by the Cholesky decomposition. In general, a system with m linear equations and n unknowns can be written as
where x1, ... ,xn are the unknowns and the numbers aij are the coefficients of the system. We can separate the coefficients in a matrix as follows:
where A is an m-by-n matrix above, x is a column vector with n entries and b is a column vector with m entries. The above mentioned Gauss-Jordan elimination applies to all these systems, even if the coefficients come from an arbitrary field. If the field is infinite (as in the case of the real or complex numbers), then only the following three cases are possible for any given system of linear equations:
A system of the form
is called a homogenous system of linear equations. The set of all solutions of such a homogeneous system is called the null space of the matrix A, it is written as Nul A. Especially in view of the above applications, several more efficient alternatives to Gauss-Jordan elimination have been developed for a wide diversity of special cases. Many of these improved algorithms are of complexity O(n^(2)). Some of the most common special cases are:
|