System of linear equations

collection of linear equations involving the same set of variables

In mathematics, a system of linear equations (or linear system) is a collection of linear equations involving the same set of variables.

A linear system in three variables determines a collection of planes (one plane for each equation). The intersection point is the solution.

Description change

Mathematicians show the relationship between different factors in the form of equations. "Linear equations" mean the variable appears only once in each equation without being raised to a power. A "system" of linear equations means that all of the equations are true at the same time. So, the person solving the system of equations is looking for the values of each variable that will make all of the equations true at the same time. If no such values can satisfy all of the equations in the system, then the equations are called "inconsistent."

For example,

 

is a system of three equations in the three variables  ,  ,  . A "solution" to a linear system is a choice of numbers for each variable such that every equation is true at the same time. The following is a solution to the equation above:

 

It works because it makes all three equations true:[1]

 

In mathematics, the theory of linear systems is a branch of linear algebra, a subject which is fundamental to modern mathematics. Computer algorithms for finding the solutions are an important part of numerical linear algebra, and such methods play a prominent role in engineering, physics, chemistry, computer science, and economics. A system of non-linear equations can often be approximated by a linear system (see linearization), a helpful technique when making a mathematical model, computer model, or computer simulation of a relatively complex system. For complex systems, there are many equations and many variables, not just two or three. In many cases, the number of equations and variables in the system are the same. In some cases, there are more variables than equations, and the solution will be a range of different values rather than one exact solution.

Simple example change

The simplest kind of linear system involves two equations and two variables:

 

One method for solving such a system is as follows. First, solve the top equation for   in terms of  :

 

Now substitute this expression for x into the bottom equation:

 

This results in a single equation involving only the variable  . Solving gives  , and substituting this back into the equation for   yields  :

 

This method generalizes to systems with additional variables.

Using Matrices change

Very often, all the coefficients are written in the form of a matrix A, which is called a coefficient matrix.

 

In much the same way, the variables can be written in the form of a vector:

 .

This makes it possible to write

 .

Mathematically, the vector defined above is a 1-by-n matrix. The system of equations can then be solved using the multiplication operation defined on matrices. A, x and b are all part of the same algebraic field.

Solving a system of linear equations change

There a three cases when looking for solutions to a system of linear equations:

  • There is no solution
  • There is exactly one solution
  • There are many solutions; the exact number depends on the properties of the field. In many cases there will be an infinite number of solutions.

There are two categories of methods for solving a system of linear equations. Iterative methods use many steps to get a solution, direct methods only need one step:

  • An example for a direct method is to solve the system for one variable; this variable can be eliminated and replaced by an expression that only uses other variables, or a number. Doing this for all variables of the equation will lead to a solution of the system if it exists.
  • Another method is to transform two equations so that one of the sides of the equations is the same in both cases; it is then possible to write another equation, which replaces the two equations and reduces the number of equations by one.
  • Gaussian elimination
  • QR decomposition
  • Cholesky decomposition
  • Cramer's rule

Examples for iterative methods are:

There are examples such as geodesy where there are many more measurements than unknowns. Such a system is almost always overdetermined and has no exact solution. Each measurement is usually inaccurate and includes some amount of error. Since the measurements are not exact, it is not possible to obtain an exact solution to the system of linear equations; methods such as Least squares can be used to compute a solution that best fits the overdetermined system. This least squares solution can often be used as a stand-in for an exact solution.

Solving a system of linear equations has a complexity of at most O (n3). At least n2 operations are needed to solve a general system of n linear equations. The best algorithm known to date was developed by Don Coppersmith and Shmuel Winograd and dates from 1990. It has a complexity of n2.376[2] Unfortunately, it is of little practical use.

Uses change

Using computers to solve systems of linear equations is used every day. For example, it is used in weather forecasting models. Hot dog factories use it to make small changes in the receipe as food ingredient prices change. College cafeterias use it to figure out how much food to cook based on past experience when the cafeteria gives students the choice between multiple entrees.

References change

  1. Linear algebra, as discussed in this article, is a very well-established mathematical discipline for which there are many sources. Almost all of the material in this article can be found in Lay 2005, Meyer 2001, and Strang 2005.
  2. Gene Golub, Charles Van Loan: Matrix Computations, Johns Hopkins University Press, 3rd edition, 1996; ISBN 978-0-8018-5414-9

Textbooks change

  • Axler, Sheldon Jay (1997), Linear Algebra Done Right (2nd ed.), Springer-Verlag, ISBN 0387982590
  • Lay, David C. (August 22, 2005), Linear Algebra and Its Applications (3rd ed.), Addison Wesley, ISBN 978-0321287137
  • Meyer, Carl D. (February 15, 2001), Matrix Analysis and Applied Linear Algebra, Society for Industrial and Applied Mathematics (SIAM), ISBN 978-0898714548, archived from the original on October 31, 2009, retrieved December 18, 2011
  • Poole, David (2006), Linear Algebra: A Modern Introduction (2nd ed.), Brooks/Cole, ISBN 0-534-99845-3
  • Anton, Howard (2005), Elementary Linear Algebra (Applications Version) (9th ed.), Wiley International
  • Leon, Steven J. (2006), Linear Algebra With Applications (7th ed.), Pearson Prentice Hall
  • Strang, Gilbert (2005), Linear Algebra and Its Applications

Other websites change

Related pages change