Let $T$ be a complete, infinite binary tree with any one-place relationship $U$. Let $L(x,y)$ be a such relationship that $$L(x,y) \text{ iif x is a father of y}$$ $R(x,y)$ is defined respectively.
So, our $T_u = (T, L, P, U)$
Construct a such sentence MSO ( Monadic Second Order Logic) $\phi$ that:
$$T_u \models \phi \iff \text{ there exists a such path in T that it contains infinite elements from U}$$
My solution:
$$\exists U \forall Ux \forall Uy \ S(x,y)$$ $$ S(x,y) = \exists X \forall Xa \exists b ((L(a,b) \vee P(a,b)) \vee a=y ) \wedge \exists Xc L(x,c) \vee P(x,c) $$
And my friend told me that it is incorrect but he didn't say me why. Please help.