Skip to main content

learn.howToCalculate

learn.whatIsHeading

Vector projection (proj_b a) shows component of vector a in direction of vector b; used in physics, graphics.

Guide étape par étape

  1. 1Input two vectors
  2. 2Calculate scalar projection: (a·b)/|b|
  3. 3Results show vector projection and scalar

Exemples résolus

Entrée
a=(3,4), b=(1,0)
Résultat
Scalar proj = 3, vector proj = (3,0)

Erreurs courantes à éviter

  • Using dot product alone (missing direction)
  • Not normalizing vector b

Questions fréquentes

How is this different from dot product?

Dot product gives scalar; projection gives vector in b's direction.

Prêt à calculer ? Essayez la calculatrice gratuite Projection

Essayez-le vous-même →

Paramètres