What is the notation for the distance between two position vectors?

Click For Summary
SUMMARY

The distance between two 3-dimensional position vectors, denoted as s and v, can be calculated using the formula r = SQRT((s1-v1)^2 + (s2-v2)^2 + (s3-v3)^2). This can also be expressed in notation as r = ||(s - v)||, where ||x|| represents the norm or modulus of vector x. The norm must be defined, with the Euclidean metric being the most common, although alternative definitions such as the L1 norm and L∞ norm are also valid.

PREREQUISITES
  • Understanding of vector notation and operations
  • Familiarity with the concept of norms in mathematics
  • Knowledge of the Euclidean metric and alternative metrics
  • Basic proficiency in mathematical notation and functions
NEXT STEPS
  • Research the properties of different vector norms, including L1 and L∞ norms
  • Study the applications of the Euclidean metric in various mathematical contexts
  • Explore the implications of using different metrics in distance calculations
  • Learn about higher-dimensional vector spaces and their distance metrics
USEFUL FOR

Students and professionals in mathematics, physics, and engineering who require a solid understanding of vector distances and norms for applications in computational geometry and related fields.

CraigH
Messages
221
Reaction score
1
If I have two 3 dimensional position vectors:

s
and
v

What is the notation for the distance between them?

I know to calculate the distance I would use:

r = SQRT ( (s1-v1)^2 + (s2-v2)^2 + (s3-v3)^2 )
where s1 is the first element in the position vector s etc.

What is an equation that represents this? Can I use the equation:

r= ||( s - v )||

where ||x|| is the modulus function?
 
Physics news on Phys.org
Sure.
 
||x|| is symbol used for the norm (modulus) of x. It has to be defined. Usually the Euclidean metric is used, but others may be used.
 
mathman said:
It has to be defined. Usually the Euclidean metric is used, but others may be used.

Hi mathman,
Thanks for the answer. What do you mean when you say it has to be defined?
 
Let v = (x,y,z)

Definition 1: ||v|| = (x2 + y2 + z2)1/2
Definition 2: ||v|| = |x| + |y| + |z|
Definition 3: ||v|| = max(|x|,|y|,|z|)

There are endless possibilities, such as using nth power with nth root, analogous to Euclidean.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K