Let vectors A=(1,0,-3) ,B=(-2,5,1) and C=(3,1,1), how do you calculate B-C?

1 Answer
Mar 20, 2018

The resultant vector is #<-5,4,0>#.

Explanation:

To subtract two vectors, it is sometimes easier to add the opposite vector. What I mean by that is:

#veca-vecbqquadqquad=>qquadqquadveca+(-vecb)#

So in this case:

#color(white)=vecB-vecC#

#=<-2,5,1> - <3,1,1>#

#=<-2,5,1>+(-1<3,1,1>)#

#=<-2,5,1>+<-3,-1,-1>#

#=<(-2-3),quad(5-1),quad(1-1)>#

#=<-5,4,0>#

That's the resultant vector. Hope this helped!