Answer:
The solution to the system of linear equations is the set of vectors of the form
![(t, (2t)/(11), (28t)/(11), (-9t)/(11)), \,\,t\in \mathbb{R}](https://img.qammunity.org/2020/formulas/mathematics/college/wen4g75o1j6vp21eeppjx3ugpkitjhsgmd.png)
Explanation:
There are several computer algebra systems (CAS) that you can use. In Mathematica you can enter the input shown below to get the solution:
```
Solve[{8y+z+3w==0, x-y+w==0, 23y-z+2w==0}, {x,y,z,w}]
```
What you obtain as an output is a list as follows:
![\{\{y\to (2x)/(11), z\to (28x)/(11),w\to (-9x)/(11)\}\}](https://img.qammunity.org/2020/formulas/mathematics/college/d635n5o9k5cpyejmhl1ipi9x28gp25883r.png)
For more details see the image below.