Given three vectors, {2, 0, 0}, {0, 2, 2}, {2, 2, 3}, how could I see if they are all on the the same line, plane, or all of r3 in Mathematica? I can graph them all, like:
data = {{1, 2, 3}, {3, 4, 5}, {5, 6, 7}};
Graphics3D[Arrow[{{0, 0, 0}, #}] & /@ data]
but how can I say take two of them, draw a plane from them, and visually see the 3rd vector in relation to the plane?

RegionPlot3Dand try to use it plot area that is perpendicular to the cross of two given vectors... unless they are parallel. – Kuba May 24 '14 at 18:57MatrixRank. For your example, `In[12]:= MatrixRank[data]Out[12]= 2`
– Daniel Lichtblau May 24 '14 at 19:11