Linear Equations System Solving Task

From GM-RKB
Jump to navigation Jump to search

A Linear Equations System Solving Task is a system of equations solving task that accepts a linear equation system.

  • AKA: Solving a System of Linear Equations.
  • Context:
  • Example(s):
    • for linear equation system [math]\displaystyle{ \begin{array}{lcl} 2x_1-x_2 & = & 1 \\ x_1+x_2 & = &2 \end{array} }[/math] Geometrically the solution is about finding a point(s) which is(are) intersection of the two given straight lines [math]\displaystyle{ 2x_1-x_2=1 }[/math] and [math]\displaystyle{ x_1+x_2=2 }[/math]. The above system of linear equation in matrix form can be written as[math]\displaystyle{ \begin{bmatrix}2& -1\\1& 1\end{bmatrix}\begin{bmatrix} x_1\\x_2 \end{bmatrix}=\begin{bmatrix} 1\\2 \end{bmatrix} }[/math]

    • for linear equation system [math]\displaystyle{ \begin{array}{lcl} x_1+x_2+x_3 & = & 3 \\ x_1-x_2-x_3 & = & 1 \\ x_1+2x_2+3x_3 & = & 4 \end{array} }[/math] Geometrically the solution is about finding a point(s) which is(are) intersection of the three given planes [math]\displaystyle{ x_1+x_2+x_3=3 }[/math], [math]\displaystyle{ x_1-x_2-x_3=1 }[/math] and [math]\displaystyle{ x_1+2x_2+3x_3=4 }[/math]. The above system of linear equation in matrix form can be written as[math]\displaystyle{ \begin{bmatrix}1& 1& 1\\1& -1& -1\\1& 2& 3\end{bmatrix}\begin{bmatrix} x_1\\x_2\\x_3 \end{bmatrix}=\begin{bmatrix} 3\\1\\4 \end{bmatrix} }[/math]

  • Counter-Example(s):
  • See: Linear Algebra.


References

2007