Given three points $F_A, F_B, F_C$ that are the feet of perpendiculars from unknown vertices $A,B,C$ on the three sides of $\triangle ABC$, find the three vertices.
My effort:
I can think of two ways to tackle this problem. The first is to have variable normal vectors of the three sides, and find the intersections, and check for perpendicularity. This gives a nonlinear system of $3$ equations in $3$ angles of the the normal vectors.
The second method is using the orthocenter. Let the unknown orthocenter be $H(x,y)$, then
The vertices can be expressed as
$ C = F_A + t_1 (F_A - H)^* = F_B + t_2 (F_B - H)^* = F_C + t_3 (F_C - H) $
$ A = F_B + t_4 (F_B - H)^* = F_C + t_5 (F_C - H)^* = F_A + t_6 (F_A - H) $
where $V^*$ is the vector obtained from $V$ by rotating it by $90^\circ$.
The above generates a nonlinear system of $8$ equations in $8$ unknowns.
I look forward to additional methods or shortcuts to this problem.