I'm trying to solve this system $$ \begin{align} x'&=x-3y+3z\\ y'&=-2x-6y+13z\\ z'&=-x-4y+8z \end{align} $$ must be reduced to a single equation I tried to express the x 3 and substitute in the other two but then I have not reduced y or z I can not understand how to solve it
Euler method can not be solved because it is written in the job to reduce to a single equation
Matrix approach: name the equations as (1), (2), (3). To reduce them into one, you have to do $$a\cdot (1) +b\cdot (2) +c\cdot (3)$$ such that the right hand side is exactly a multiple of the right hand side. That is $$(ax+by+cz)'=(a-2b-c)x+(-3a-6b-4c)y+(3a+13b+8c)z\\ =\lambda(ax+by+cz)$$
This makes it an eigenvalue problem. You need to solve for eigenvalue $\lambda$, then find the eigenvectors. The eigenvector will make a good set of $a,b,c$.
Another approach: (without using matrix)
$$2\cdot (3)-(2): 2z'-y'=-2y+3z\tag{4}\\ (1)+(3): x'+z'=-7y+11z\implies x'=-z'-7y+11z$$ Now equate this with (1): $$-z'-7y+11z=x-3y+3z\implies x=-z'-4y+8z \tag{5}$$
This equation can be used to eliminate the variable $x$. Taking the derivative of (5) gives $$x'=-z''-4y'+8z' \tag{6}$$ Plug (5) and (6) into (1): $$-z''+9z'-11z=4y'-7y\tag{7}$$ $$(7)-4\cdot (4): y=-z''+z'+z\tag{8}$$ Take derivative of (8): $$y'=-z'''+z''+z'\tag{9}$$
Now plug (8) and (9) into (7): $$2z'-3z=-z'''+z''+z'-2(-z''+z'+z)$$
This is the single ode for $z$.