Given two projective references (coordinate frames) in $\mathbb{RP}^2$: $R_1 = \{(-1:-2:-1), (2:2:2), (0:0:3); (2:3:3)\}$ $R_2 = \{(-6:-10:-5), (-1:-3:1), (3:4:7); (-4:-9:3)\}$ Determine the points of $\mathbb{RP}^2$ that have the same homogenous coordinates in both references.
My idea was calculating the matrix changing coordinates from one frame to the other and then looking for the vectors this matrix leaves invariant. Unfortuntely i already fail at calculating the matrix, i feel like i need to calculate an adapted basis for each of the reference systems and than calculate a change matrix for these but am unsure how to do that and even more feel like i have still not completely understood the idea of a projective reference. Thus appreciate any help both for solving the problem and regarding an explanation of references and their interplay with homogenous coordinates and the associated vector space very much. Thanks in advance!
The book by Hongyu Guo, Modern Mathematics and Applications in Computer Graphics and Vision on the bottom half of page 142 states:
The idea is that in Eucliden space any four points are linearly dependent and the dependency can be found using linear algebra. Applying this to your two sets of point, first let $\;p_0 = (2,3,3),\;$ $\;p_1 = (-1,-2,-1),\;$ $p_2 = (2,2,2),\;$ $p_3 = (0,0,3).\;$ Then $\;p_0 = -p_1 + \frac12 p_2 + \frac13 p_3.\;$ Second, let $\;q_0 \!=\! (-4,-9,3),\;$ $q_1 \!=\! (-6,-10,-5),\;$ $q_2 \!=\! (-1,-3,1),\;$ $q_3 \!=\! (3,4,7).\;$ Then $\;q_0 \!=\! q_1+q_2+q_3.$
In the first case, let ${\bar p_0} \!:=\! p_0,\;$ ${\bar p_1} \!:=\! -p_1 \!=\! (1,2,1),\;$ ${\bar p_2} \!:=\! \frac12 p_2 \!=\! (1,1,1),\;$ ${\bar p_3} \!:=\! \frac13 p_3 \!=\! (0,0,1).\;$ Now, $\;{\bar p_0} \!=\! {\bar p_1} \!+\! {\bar p_2} \!+\! {\bar p_3}.\;$ The 1st projective frame is $\;\{{\bar p_1},{\bar p_2},{\bar p_3},{\bar p_0}\}.\;$ The 2nd is $\;\{q_1,q_2,q_3,q_0\}.\;$
With each projective frame we can find homogeneous coordinates of any point. In the first frame we have, $\;(x,y,z) = (-x+y){\bar p_1} + (2x-y){\bar p_2} + (-x+z){\bar p_3}.\;$ In the second frame we have, $\;(x,y,z)25 = (-25x+10y+5z)q_1 + (50x-27y-6z)q_2 + (-25x+11y+8z)q_3.\;$
What points have the same homogeneous coordinates in both frames? Solving the equation $$\;(-x+y, 2x-y, -x+z)t = (-25x+10y+5z, 50x-27y-6z, -25x+11y+8z)\;$$ gives three solutions, namely, $\;(x,y,z,t) \in \{(1,0,0,25), (1,1,3,5), (7,12,6,-5)\}.\;$ For example, $\; (1,1,3) = 0{\bar p_1} + 1{\bar p_2} + 2{\bar p_3},\;$ and $\; (1,1,3)5 = 0q_1 + 1q_2 + 2q_3.\;$