Question 1199829
<font color=black size=3>
Unit vectors i,j,k are defined as such
i = <1,0,0>
j = <0,1,0>
k = <0,0,1>
When combined, they form the 3D xyz axis.


i+j = <1,0,0> + <0,1,0>
i+j = <1+0,0+1,0+0>
i+j = <1,1,0>


Then apply the dot product
k dot (i+j) = <0,0,1> dot <1,1,0>
k dot (i+j) = 0*1 + 0*1 + 1*0
k dot (i+j) = 0


The zero dot product result tells us that vector k is perpendicular (aka orthogonal) to vector i+j
In fact, any linear combination m*i+n*j, such that m and n are scalars, will be orthogonal to vector k.


Answer: <font color=red size=4>0</font>
</font>