I can not find a way to effectively identify coordinates of the point, if used in the command let in the draw path. My example:
\draw[gray] let \p1=(D), \p2=(intersect), \p3=(C) in (\x1,\y2)
-- +(-\x1,0) node[left, red]{$f(c)$} -- (\x1,\y2) node[above, red]{$F$}
-- (\x3,\y2) node[right, red]{$E$};
Now I would like to create named coordinate for node with text $F$:
\coordinate (F) at (\x1,\y2);
but with error. How I could I solve it? Thanks.

