How is it possible to add a point to a vector?

5.4k Views Asked by At

I'm reading Linear Algebra book, stating that points are elements in the affine space $\mathcal{A}$, associated to a certain linear space $\mathbb{A}$. The elements in $\mathbb{A}$ are free vectors. There's function $\phi:\mathcal{A}\times \mathcal{A} \rightarrow \mathbb{A}$ satisfying the following properties:

  • Given any point $A$ and free vector $u$, then there is one and only one point $B$ such that $\phi(A,B)=u$.
  • For any points $A,B,C$ we have $\phi(A,B)+\phi(B,C)=\phi(A,C)$

There's a bijection between $\mathcal{A}$ and $\mathbb{R}^3$, and another between $\mathbb{A}$ and $\mathbb{R}^3$.

Given points $A,B$, and a vector $u$, we can write $A+u=B$ as notation for $\phi(A,B)=u$ (the sum between a point and a vector).

Using this notation it's natural to define a straight line as the set of points of form $A+\lambda u\ \forall_{\lambda \in \mathbb{R}}$. This is a subset of the affine space.

Using the bijections above we can write the straight line as $(x_1,x_2,x_3)=(a_1,a_2,a_3)+\lambda (u_1,u_2,u_3)$ (using the coordinates for the basis we fixed in $\mathbb{A}$ and $\mathcal{A}$)

I'm not sure why we can do $(x_1,x_2,x_3)=(a_1+\lambda u_1,a_2+\lambda u_2,a_3+\lambda u_3)$ and get a point... When we add ($+$ in $\mathbb{R}^3$) those components, we're adding representations of a free vector and a point, which belong to different sets...how are we sure that it respects the definition used above for a sum between a point and a vector?

2

There are 2 best solutions below

1
On BEST ANSWER

Normally when we pick coordinates in linear algebra, we pick compatible choices on all types of things involved.

Name the maps $i : \mathcal{A} \to \mathbb{R}^3$ and $j : \mathbb{A} \to \mathbb{R}^3$

A typical presentation of this would, after having selected some linear isomorphism $j$, pick some point $O$ in the affine space to be mapped to the origin and then define $i$ to be the map given by $i(P) = j(\phi(O,P))$.

Then, you do have that $i(P + v) = j(\phi(O, P+v)) = j(\phi(O,P) + v) = i(P) + j(v)$

(P.S. it's convenient to use the notation $Q-P$ for $\phi(P,Q)$)


If you had a different $i$ that wasn't (equivalent to) something constructed this way, then you wouldn't be able to compute the affine space operations via vector operations on their coordinate representations... but you shouldn't have picked an $i$ that was incompatible with your $j$.


It's somewhat more typical, I think, to do the construction with just $\mathcal{A}$ and $\mathbb{A}$; that is, once you pick an element $O \in \mathcal{A}$, you define a bijection $h : \mathcal{A} \to \mathbb{A}$ by $h(P) = \phi(O,P)$.

(then, with everything in terms of $\mathbb{A}$, you could then consider a map $\mathbb{A} \to \mathbb{R}^3$ if you are inclined to do so)

0
On

When you add a point and a vector you get a point because the addition of a point and a vector was defined that way.

Note that when you define an operation, it is not at all necessary that all arguments of the operation must be of the same type (belong to the same set). Indeed, in your post you also used another such operation when you wrote $\lambda u$ where $\lambda$ is a real number and $u$ is a vector, and the result is a vector as well.

However in the case of points and vectors, it's actually possible to get rid of the points by selecting one special point $O$, called origin, and then identifying each point $P$ with the vector $p$ you have to add to $O$ in order to get $P$, called location vector. In reverse, you can chose to represent the point $P$ by the components of the corresponding vector $p$.

Of course if you do that, you see that the component-wise addition works exactly because it is really the vector addition of the corresponding location vector.