How can I go about rearranging an equation similar to this...
$$\left(\pmatrix{-3\\0\\1}+ t \pmatrix{1\\4\\7} \right) \cdot n - a = 0$$
The issue I'm having is manipulating dot products
How can I go about rearranging an equation similar to this...
$$\left(\pmatrix{-3\\0\\1}+ t \pmatrix{1\\4\\7} \right) \cdot n - a = 0$$
The issue I'm having is manipulating dot products
The dot product is distributive over vector addition. This is easy to see because the dot product is essentially a sum of component-wise multiplications, and vector addition works component-wise.
That is, $$a\cdot(b+c) = a\cdot b + a\cdot c.$$