Asked by Bobby

Let u=[3,-5],
v=[-6, 1]
w=[4,7]

Evaluate:
u * (v + w)

Answers

Answered by drwls
I am assuming that the * indicates a "dot product".

v + w = [-2,8]

[3,-5]*[-2,8] = -6 -40 = -46