Should only be the trivial solution of x1=x2=x3=0. You would get more than one solution if you had a free variable, but that isn't the case here. Also just for the sake of it in mathematica:
Solve[x - 2 y + 3 z == 0 && -2 x - 3 y - 4 z == 0 && 2 x - 4 y + 4 z == 0, {x, y, z}]
{{x -> 0, y -> 0, z -> 0}}