Asked by ami

The components of a vector V can be written (Vx, Vy, Vz).
What are the components and length of a vector which is the sum of the two vectors, V1 and V2, whose components are (5.0, 1.3, -15.0) and (2.3, -4.7, -1.0)?

Answers

Answered by drwls
Add the components for the vector sum
You get (7.3, -3.4, -16.0)

The length of any vector is the square root of the sum of the squares of the components.
Answered by Damon
Vx = 5.0+2.3
Vy = 1.3-4.7
Vz = -16

length = sqrt (Vx^2+Vy^2+Vz^2)
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions