It sounds like "elementary transformation method" refers to Gauss-Jordan elimination.
Start with the augmented matrix,
![\left[\begin{array}{ccc|ccc}2&3&1&1&0&0\\2&8&1&0&1&0\\3&7&2&0&0&1\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D2%263%261%261%260%260%5C%5C2%268%261%260%261%260%5C%5C3%267%262%260%260%261%5Cend%7Barray%7D%5Cright%5D)
• Add (-1)(row 1) to row 2, and (-3)(row 1) to 2(row 3). In other words,
-(2, 3, 1, 1, 0, 0) + (2, 8, 1, 0, 1, 0) = (0, 5, 0, -1, 1, 0)
-3 (2, 3, 1, 1, 0, 0) + 2 (3, 7, 2, 0, 0, 1) = (0, 5, 1, -3, 0, 2)
I'll omit these details in the next several steps. The augmented matrix then transforms to
![\left[\begin{array}{ccc|ccc}2&3&1&1&0&0\\0&5&0&-1&1&0\\0&5&1&-3&0&2\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D2%263%261%261%260%260%5C%5C0%265%260%26-1%261%260%5C%5C0%265%261%26-3%260%262%5Cend%7Barray%7D%5Cright%5D)
• Add (-1)(row 2) to row 3:
![\left[\begin{array}{ccc|ccc}2&3&1&1&0&0\\0&5&0&-1&1&0\\0&0&1&-2&-1&2\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D2%263%261%261%260%260%5C%5C0%265%260%26-1%261%260%5C%5C0%260%261%26-2%26-1%262%5Cend%7Barray%7D%5Cright%5D)
• Add (-1)(row 3) to row 1:
![\left[\begin{array}{ccc|ccc}2&3&0&3&1&-2\\0&5&0&-1&1&0\\0&0&1&-2&-1&2\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D2%263%260%263%261%26-2%5C%5C0%265%260%26-1%261%260%5C%5C0%260%261%26-2%26-1%262%5Cend%7Barray%7D%5Cright%5D)
• Add (-3)(row 2) to 5(row 1):
![\left[\begin{array}{ccc|ccc}10&0&0&18&2&-10\\0&5&0&-1&1&0\\0&0&1&-2&-1&2\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D10%260%260%2618%262%26-10%5C%5C0%265%260%26-1%261%260%5C%5C0%260%261%26-2%26-1%262%5Cend%7Barray%7D%5Cright%5D)
• Multiply row 1 by 1/10 and row 2 by 1/5:
![\left[\begin{array}{ccc|ccc}1&0&0&1.8&0.2&-1\\0&1&0&-0.2&0.2&0\\0&0&1&-2&-1&2\end{array}\right]](https://tex.z-dn.net/?f=%5Cleft%5B%5Cbegin%7Barray%7D%7Bccc%7Cccc%7D1%260%260%261.8%260.2%26-1%5C%5C0%261%260%26-0.2%260.2%260%5C%5C0%260%261%26-2%26-1%262%5Cend%7Barray%7D%5Cright%5D)
We're done, and we find that
