I am watching Khan Academy Linear Algebra series and I am really getting confused when Sal writes some sort of equation for the vector, such as $v = ai + bj + ck$. I understand that vector $v$ should be of the form $(x, y, z, ...)$. Sal talked about vectors as lines... so it might be related to some definition of a line on the plane, but I am not really sure. I will appreciate your clarification!
Thanks for help!
$\endgroup$3 Answers
$\begingroup$The $i,j,k$ are the basis vectors $i=(1, 0, 0)$, $j=(0, 1, 0)$, $k=(0, 0, 1)$, so that $$ai+bj+ck=a(1,0,0)+b(0,1,0)+c(0,0,1),$$ which gives $$(a,0,0)+(0,b,0)+(0,0,c)=(a,b,c).$$ So this is basically the vector you refer to as $(x,y,z)$.
$\endgroup$ 2 $\begingroup$These are standard base vectors:
- $i = (1,0,0)$,
- $j = (0,1,0)$,
- $k = (0,0,1)$.
They are the two equivalent ways of writing the same vector. If a vector $\vec{v} = (2,3,4) \iff \vec{v} = 2\vec{i}+3\vec{j}+4\vec{k}$.
$\endgroup$