Consider the embedding vector for a word, x=[0.1,0.2,−0.3,0.4]. Suppose the word is at position 2 in the given sentence. Add the corresponding position embedding p to the word embedding to get h, i.e. the sum of the elements in h=x+p. Use the fixed-sinusoidal position embedding vector calculated using the formula given below
PE(pos,2i)=sin(100002i/dmodelpos)
PE(pos,2i+1)=cos(100002i/dmodelpos)
What is h[0]+h[1] i.e. sum of first two elements of h?