[Math] finding whether vector equation passes through a point

vectors

say that I have a vector equation, $(x,y,z)=(2,1,1)+t(1,0,1)$
and given a few points, $(1,1,0),(1,1,1),(3,1,3)$

How do I actually check for whether they passes through those points?

Best Answer

You have a line, which can be written in cartesian form as $$\frac{x-2}{1}=\frac{y-1}{0}=\frac{z-1}{1}=t$$ Any general point on it is of the form $P(t+2,1,t+1)$

Now those points for which the value of $t$ is consistent lie on the line and others don't. (Example $(1,1,0)$ lies on the line for $t=-1$)