Given $a,b$ in $Z_N$* for some composite positive integer N. Let the bit sizes are $a_N , b_N , N_N$ respectively.
Also $a_N = (N_N$ or $N_N-1) , a<N , (a,N)=1$
$ b_N = (N_N$ or $N_N-1) , b<N , (b,N)=1$
select $t$ where $(t,N)=1$ and $0<t<N$ such that if $(a*t)≡(u)mod(N)$, $(b*t)≡(v)mod(N)$ then the output pair $(u,v)$ should have the bit sizes $0<v_N<{N_N\over2}$ and $0<u_N<{N_N\over4}$ respectively. any other values are not accepted
The attempt i tried to solve. -- Since given $a,b$ and $t$ can be any value within $N$ , I took $u$ value satisfying the condition $0<u_N<{N_N\over4}$ to get $t$, i.e, $t≡(a^{-1}*u)mod(N))$, then substituted it in second congruence equation $(b*t)≡(v)mod(N)$ to get $v≡(a^{-1}*u*b)mod(N)$. But it seems the realtion does not guarantee the size of $v_N$ to be within $0<v_N<{N_N\over2}$ for any $u$ selected in $0<u_N<{N_N\over4}$.
I know i did a mistake somewhere but unable to recognize it. So the question is , Is there any possible pair of $(u_N,v_N)$ that satisfies the given congruences and bit relations. If exists , is there any easy way to find $v$ for corresponding valid $u$ taken.
Please suggest me an idea to solve the problem. or someone solve it for me.