Solve Ax=b Matrix System of Equations: Help Needed

  • Context: Undergrad 
  • Thread starter Thread starter skujesco2014
  • Start date Start date
  • Tags Tags
    Matrix
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
skujesco2014
Messages
24
Reaction score
0
Hi, all. I'm in desperate need of assistance with a matrix I can't get my head around of. I want to solve a system of equations of the type [itex]Ax=b[/itex], where

[tex]A=<br /> \begin{pmatrix}<br /> 2 & 5 & -3 \\<br /> 1 & -2 & 1 \\<br /> 7 & 4 & -3 <br /> \end{pmatrix}[/tex]

and where

[tex]b=<br /> \begin{pmatrix}<br /> -2 \\<br /> -1 \\<br /> -7 <br /> \end{pmatrix}[/tex]

that is, [itex]b[/itex] is the negative of the first column. Written as it is above, [itex]A[/itex] has zero determinant and the determinant formed when the [itex]k^{th}[/itex] column of [itex]A[/itex] is substituted by the vector [itex]b[/itex] is clearly zero as well. A theorem says that in this case the system has infinite solutions. If one reduces the system to reduced row-echelon form the solutions can be parameterized as, for example, [itex]x_3=t, x_2=5t/9, x_1=t-1[/itex]. An immediate solution by inspection is [itex]x=(-1,0,0)^T[/itex] which one obtains letting [itex]t=0[/itex].

But let's give another value of [itex]t[/itex], for example, [itex]t=1[/itex] which gives [itex]x=(0,5/9,1)^T[/itex]. This is one of the parameterized solutions and yet it does not satisfy the original system. It does, however, satisfy the reduced system obtained from the original by gaussian elimination and should be equivalent, i.e.,

[tex] \begin{cases}<br /> x_1 - x_3 & = -1\\<br /> 9x_2 - 5x_3 & = 0<br /> \end{cases}[/tex]

But shouldn't my parameterized solution satisfy both original and reduced systems, no matter what? Yet, the only satisfying solution for the original system seems to be [itex]x=(-1,0,0)^T[/itex]. What am I not seeing here?

Thanks in advance.
 
Physics news on Phys.org
I've discovered my mistake! I've sinned against the elementary row operations on matrix [itex]A[/itex]! The reduced system actually is

[tex] \begin{cases}<br /> x_1 -x_3/9& = -1\\<br /> x_2-5x_3/9 & = 0<br /> \end{cases}[/tex]

The displayed erroneous reduced system above was obtained after mistakenly adding a multiple of a row to a multiple of another row. This isn't an allowed elementary operation. It was very intriguing that this little mistake lead to the puzzle that inspired this post.