Solution
It is false. In case the number of linear equations is equal to the number of variables, the system has only one solution. In case the number of linear equations is less than the number of variables, the system has infinitely many solutions.
Consider an arbitrary system of linear equations with n variables and r equations. Take into account the fact that any system of linear equations is equivalent to some stepwise system of linear equations. We can assume that its expanded matrix has the form as:
"\\begin{bmatrix}\n0 & ... & 0 & a_{1j_1} & a_{1j_2} & ... & a_{1j_r} & ... \n& a_{1n} & b_1 \\\\\n 0 & ... & 0 & 0 & a_{2j_1} & ... & a_{2j_r} & ...\n & a_{2n} & b_2 \\\\\n... & ... &... &... &... & ... &... & ... \n&... &... \\\\\n 0 & ... &... & 0 &... & ... & a_{rj_r} & ...\n & a_{rn} & b_r\n\\end{bmatrix}"
Where a1j1, a2j2 … arjn are not null.
In case r = n expanded matrix has the form as:
"\\begin{bmatrix}\na_{11} & a_{12} & ... & a_{1n} & b_1 \\\\\n... & ... &... & ... &... \\\\\n 0 & ... &... & a_{nn} & b_n\n\\end{bmatrix}"
From the last linear equation we can get the value of xn. Then rising up through the system and substituting the known values of xi, we can find the values of all variables. This solution will be unique.
In case r > n expanded matrix has the form as:
"\\begin{bmatrix}\na_{11} & a_{12} & ... & a_{1n} & b_1 \\\\\n... & ... &... & ... &... \\\\\n 0 & ... &... & a_{rn} & b_r\n\\end{bmatrix}"
Throw free unknowns (xr+1.. xn) to the right side. Give them free values from R. Now we can solve the system with respect to the remaining unknowns as it was done in the previous case (r = n). For given values of free unknowns, the remaining unknowns are uniquely determined. In such case the system has infinitely many solutions.
Answer
The Gaussian elimination method can be applied not only to the system where the number of linear equations is equal to the number of variables, but also for the system where the number of linear equations is less than the number of variables. In case the number of linear equations is greater than the number of variables, the solution is reduced to the case with equal amount of variables and equations.
Comments
Leave a comment