Coordinates of a point, components of a vector and midpoint of a segment

Coordinates of a point on the plane

Let's see how vectors are used to assign coordinates to the points in the plane.

We consider a fixed point in the plane O (known as origin), and a basis B={u,v} of V2 (Space vector of dimension 2).

Let's remember that a basis of V2 are two linearly independent vectors. The set formed by O and B={u,v} constitutes a reference system in the plane, since it allows us to determine the position of any other points on the plane.

This is because any other points P on the plane determines along with point O a vector OP. Let (p1,p2) be the components of the vector in basis B. Then (p1,p2) are the coordinates of point P in the reference system R={O;u,v} and we write P=(p1,p2).

The procedure to find the coordinates of point P in a given reference system is the following :

  1. From the points O and P we determine the vector OP

  2. We express the vector OP as a linear combination of the vectors of the basisB={u,v}, that is to say, OP=p1u+p2v

  3. P=(p1,p2)

Example

Express point P of the drawing in the reference system R={O;u,v}.

imagen

  • We draw the vector OP:

imagen

  • We express the vector OP as a linear combination of the vectors of the basis B={u,v}:

imagen

  • We obtain OP=u+2v and therefore the coordinates of the point P are P=(1,2)

From now on we will consider, as reference system R, the one formed by the origin of coordinates O=(0,0) and the canonical basis of V2 B={i,j}.

Components of a vector determined by two points

Let's see now the way to determine the components of a vector if we know the coordinates of its endpoints:

Let P=(p1,p2) and Q=(q1,q2) be two points of the plane, and PQ the vector that goes from P to Q. Then the components of the vector PQ are PQ=(q1p1,q2p2).

Example

Given P=(2,6) and Q=(3,9). The components of the vector PQ are:PQ=(32,96)=(5,3)

Applying a vector to a point

Given a point P and a vector v, the result of applying the vector to the point is a new point Q placed in the direction of v and at a distance |v|. (module of the vector v)

The coordinates of this new point Q are calculated from those of P=(p1,p2) and v=(v1,v2) thus Q=P+v=(p1+v1,p2+v2)

NOTE: It is very important to bear in mind that this addition operation only makes sense between a point and a vector. We must never add two points, and the result of adding two vectors is another vector and not a point!

Example

Considering the following figure, determine the coordinates of point P of the figure, the result of applying the vector v to the point A.

imagen

We begin by calculating the components of the vector v:v=(2(1),42)=(3,2) Since P is the result of applying the vector v to the point A we have,P=A+v=(0,4)+(3,2)=(3,6)

Midpoint of a segment

Let's consider now a segment with endpoints A=(a1,a2) and B=(b1,b2). Let M=(m1,m2) be the midpoint of the above mentioned segment. Obviously the above mentioned point satisfies that AB=2AM, or that (b1a1,b2a2)=2(m1a1,m2a2)

Separating component by component we obtain: b1a1=2(m1a1)b2a2=2(m2a2) and isolating we have: m1=a1+b12m2=a2+b22 So that we can calculate the coordinates of the midpoint of a segment from the coordinates of its endpoints.

Example

Considering the points A=(3,7) and B=(1,2) find the midpoint of the segment that they determine.

Applying the previous formulas we have: m1=a1+b12=3+22=1m2=a2+b22=7+22=92 Therefore the midpoint of the segment AB is M=(1,92)