I'm trying to figure out how to solve this problem of Analytic geometry of the space:
I have a line described by the system: $$\begin{cases} 2x-y+z-1 &=0\\ 5x+3y-8& =0 \end{cases}$$
and I have to verify wether this line is parallel or not to the following plane:
$x-y+z+10=0$
I tried to make the reduced equations of the line and then swap the $z$ and $y$ I obtained into the plane equation.
Solved the equation with variable $x$ but then I got 3 solutions which don't seem to be the real point of intersection between the line and the plane.
Any idea of how should I solve this problem?

Another approach (without the use of matrices):
Let me first describe some more general things. Suppose you have a plane in $\mathbb{R}^3$, then it contains at least some point $P = (x_0, y_0, z_0)$. Consider an arbitrary other point $Q = (x,y,z)$, then $Q$ is a point of the plane if the vector $$\vec{PQ} = Q - P = (x-x_0, y-y_0, z-z_0)$$ is a vector which lies in the plane. Suppose we have a vector $$\vec{n} = (a,b,c)$$ which is normal to this plane. This means that for any vector in the plane, we must have that $\vec{n}$ is orthogonal to it (by definition of the normal vector). We described all possible vectors in the plane (see the expression of $\vec{PQ}$, so we find that the equation of the plane is given by $$a(x-x_0) + b(y-y_0) + c(z - z_0) = 0. \quad \quad\quad\quad\quad(1)$$ Where does this expression comes from? Well, two vectors $(x_1, x_2, x_3)$ and $(y_1, y_2, y_3)$ are orthogonal if and only if $$x_1y_1 + x_2y_2 + x_3y_3 = 0 $$ so because of our description of vectors $\vec{PQ}$ in the plane and the definition of normal vector, we find the equation in formula (1).
Now for your line: let us find the direction of it by applying the same trick as for the plane: we look for a vector which lies on this line and do so by finding two points on the line and by computing the corresponding vector. You can check that the points $K= (1,1,0)$ and $L= (-2,6,11)$ are points on the line. I have found these by setting $z = 0$ and then by trying some $x$ values in order to find nice $y$-values. Hence the vector $$\vec{KL} = L - K = (-3, 5, 11)$$ is a vector on the line you have.
Now we look if this vector is orthogonal to the normal of our plane. Because of formula (1), the normal is given by $(1,-1,1)$ (by comparing the equation of the plane you are given by the equation in formula (1)). If the normal is orthogonal to the vector on the line, then the line must be parallel to the plane. If not, the line will intersect the plane. We compute the inner product and find: $$1 \cdot (-3) + (-1) \cdot 5 + 1 \cdot 11 = -3 -5 + 11 = 3 \neq 0$$ hence the vector on the line is not perpendicular to the normal of the plane. So the line will intersect the plane.