I just want to know if what I know about vector equations is true, and if there is more.
Let's say I have the following vector equations.
$\left[\begin{array}{c} x \\ y \\ z \end{array}\right]$ $= \left[\begin{array}{c} a \\ b \\ c \end{array}\right]$ $+ t\left[\begin{array}{c} d \\ e \\ f \end{array}\right]$ and $\left[\begin{array}{c} x_2 \\ y_2 \\ z_2 \end{array}\right]$ $= \left[\begin{array}{c} a_2 \\ b_2 \\ c_2 \end{array}\right]$ $+ t\left[\begin{array}{c} d_2 \\ e_2 \\ f_2 \end{array}\right]$
If I let $t = 1$, $\left[\begin{array}{c} d \\ e \\ f \end{array}\right]$ is a direction vector
$\left[\begin{array}{c} a \\ b \\ c \end{array}\right]$ is a point on the line, but since it starts from the origin, is also a vector
Changing different values of $t$ give me different points on the line by solving for $x, y, z$
The two vectors form a plane, so if I cross product, $\left[\begin{array}{c} a \\ b \\ c \end{array}\right]$ $\times$ $\left[\begin{array}{c} a_2 \\ b_2 \\ c_2 \end{array}\right]$, I get the normal to the plane.
Once I have the normal to the plane, I use it, along with one known point and one unknown point to find a scalar equation.
$\quad\quad(bc_2-cb_2)(x-a) + (ca_2-ac_2)(x-b) + (ab_2-ba_2)(x-c) = 0$
If I drew out a vector equation, it appears to form a plane on its own. Does that mean a vector equation of a line is also a vector equation of a plane? If not, can I cross $\left[\begin{array}{c} a \\ b \\ c \end{array}\right]$ with $t\left[\begin{array}{c} d \\ e \\ f \end{array}\right]$ to get the normal, then do the above again?