Problem

Given vector a=[3,2,1] and vector b=[1,4,2], find the sum of these two vectors a+b.

Answer

Expert–verified
Hide Steps
Answer

Therefore, the vector a+b is [4,6,3].

Steps

Step 1 :The addition of two vectors is performed component-wise. So, we add the corresponding components of vectors a and b to get the vector a+b.

Step 2 :The first component of a+b is 3+1=4.

Step 3 :The second component of a+b is 2+4=6.

Step 4 :The third component of a+b is 1+2=3.

Step 5 :Therefore, the vector a+b is [4,6,3].

link_gpt