Interactive Vector Learning

🎯 Interactive Vector Learning

🧭 What are Vectors?

A vector is a quantity that has both magnitude (size) and direction.

Think of it like an arrow: the length shows how much, and the direction shows which way!

3
2
Vector v = (x, y)
Magnitude |v| = √(x² + y²)
Direction θ = arctan(y/x)
Vector: (3, 2)
Magnitude: 3.61
Direction: 33.7°

➕ Vector Addition

Vector addition follows the “tip-to-tail” rule.

Place the tail of the second vector at the tip of the first vector. The result connects the tail of the first to the tip of the second!

,
,
A + B = (Ax + Bx, Ay + By)
A = (3, 2)
B = (1, 3)
A + B = (4, 5)

➖ Vector Subtraction

Vector subtraction: A – B = A + (-B)

To subtract B from A, we add the negative of B (flip B’s direction) to A!

,
,
A – B = (Ax – Bx, Ay – By)
A = (4, 3)
B = (2, 1)
A – B = (2, 2)

• Dot Product

The dot product measures how much two vectors point in the same direction.

Result is a scalar (number), not a vector. Used for finding angles between vectors!

,
,
A • B = Ax × Bx + Ay × By
A • B = |A| × |B| × cos(θ)
θ = arccos((A • B) / (|A| × |B|))
A • B = 11
Angle between vectors: 35.3°

✖️ Cross Product

In 2D, cross product gives the area of the parallelogram formed by two vectors.

Result is a scalar in 2D. In 3D, it gives a vector perpendicular to both input vectors!

,
,
A × B = Ax × By – Ay × Bx (2D)
|A × B| = |A| × |B| × sin(θ)
Area of parallelogram = |A × B|
A × B = 5
Parallelogram Area: 5 square units

🎯 Practice Problems

Problem 1: Find the resultant vector

A force of 5N acts eastward, and another force of 3N acts northward. Find the resultant force.

Problem 2: Dot product application

Two vectors A = (4, 3) and B = (2, -1). Find the angle between them.

Interactive Calculator

, )
, )
Enter vectors above and click calculate!
VCA Watermark
VCA
🌙