Here is my vector:
$(-3,1,-4)+r(4,0,1)$
And my plane: Created from the following vectors:
$x: (3,0,1)+t(-1,1,2)$
$x: (0,2,-1)+s(2,-2,-4)$
$(3,0,1)+t(-1,1,2)+n(2,-2,-4)$
(Cartesian: $x+y-3=0$)
I've tried to do the following:
vector: $(-3+4r, 1, -4+r)$
plane: $(3-t+2n, t-2n, 1+2t-4n)$
e.g.:
1) $3-t+2n = -3+4r$
2) $t-2n = 1$
3) $1+2t-4n = -4+r$
But I didn't find the right solution...
The intersection point should be: $(1,1,-3)$(written in the math book)
What did I do wrong? Thanks in advance.