0

How do I show that this function is the identity function? We are currently studying collineations and I do not know how to know the other points within the line are not permuting(or moving around). Basically, how can I show they are fixed point-wise?

cakey
  • 245

1 Answers1

1

A function that fixes two points on a projective line is not neccessarily the identity. Example in homogeneous coordinates:

$$\begin{pmatrix}x\\y\end{pmatrix}\mapsto\begin{pmatrix}2x\\y\end{pmatrix}$$ fixes the origin $(0,1)^T$ and the point at infinity $(1,0)^T$.

For an affine line, you essentially imply that the point at infinity remains fixed as well, so you have three fixed points. But you still have to restrict your class of functions. If you only accept projective transformations, i.e. things you can express as matrix multiplication, then you can use the 2d version of this argument to show that three points and their images uniquely define a projective transformation of the line. This gives you the neccessary uniqueness of the identity transformation.

If you want to treat this completely affine, then you should probably investigate affine transformations $x\mapsto ax+b$. If you have two points and their images, you can deduce $a$ and $b$, and if you know the points agree with their images, you get $a=1,b=0$.

Note that for some projective planes there exist collineations which are not projective transformations. Similarly, there exist projective lines for which a non-identity transformation can have three or more fixed points. Most practical example would be $\mathbb{CP}^1$ where conjugation $z\mapsto\bar z$ fixes real points but is not the identity.

MvG
  • 42,596
  • I don't know if this would change things, but the exact problem was to show is some function F a collineation fixes pointwise a hyperplane and fixes some point outside of the hyperplane, then F is the identity. Do I even have the right idea of what the identity is? I would think the identity leaves all points and lines the same. – cakey Apr 27 '14 at 17:03
  • @cakey: Your idea of an identity is correct. Speaking about collineations, you'd best focus on incidence. Do you know about harmonic points? You can show that every collineation will map harmonic points to harmonic points, and you can also show that you can describe every point in space starting from your fixed points and a (possibly infinite) number of harmonic point constructions. That's the kind of proof I know for the fact you mentioned. – MvG Apr 27 '14 at 19:32