Please stop asking the same question. This is just a continuation of your last question.
You are asking how to find the self-intersection point on this curve. Said another way, you want to find the point where the curve crosses itself. Mathematically, what does that mean? Mathematically, it asks for a pair of distinct values of T, such that Fx(T1) == Fx(T2) and Fy(T1) == Fy(T2).
Fxeq = subs(Fx,T,T1) - subs(Fx,T,T2)
Fxeq = 
Fyeq = subs(Fy,T,T1) - subs(Fy,T,T2)
Fyeq = 
We now have two equations in the two unknowns T1 and T2.
[T1sol,T2sol] = solve(Fxeq,Fyeq,[T1,T2])
T1sol =

T2sol =

As expected, we can ignore the case where T1=T2 =0. And there is complete symmetry here, so solutions 2 and 3 are the same solution, just swapped around.
xsol = expand(subs(Fx,T,T1sol(2)))
ysol = expand(subs(Fy,T,T1sol(2)))
plot(double(xsol),double(ysol),'rs')
title("[ " + double(xsol) + " , " + double(ysol)+ " ]")
The intersection lies at (x,y) = (13,0).