I want to check if three vectors are in the same plane, the vectors being $$A(2,-1,2),B(1,2,-3),C(3,-4,7). $$
What I did so far is to create vector $AB ( -1,3,-5)$ and build the plane equation with the point $A$ $$-1(x-2)+3(y+1)-5(z-2)=0$$ and inserted the point $C$ to check if the equation exists. Is this the right way to do that or I did something wrong?
Thanks!