I was reading the follow paper about cryptography: Fully Homomorphic Encryption over the Integers, but I faced a proof of Lemma which I didn't undestand: the Lemma A.1.
In short, there is a proposition that says that "$x$ can be write as $p\alpha + 2\beta$."
In this expression, $p$ is a given odd number, all the values are integers and $\alpha$ and $\beta$ are the unknowns. Normally, it should be trivially true, because the greatest common divisor between $p$ and $2$ is $1$, and $1$ divides $x$ (See Diophantine equation if you don't know why $1$ divides $x$ implies this equation has solution).
But in this case, it isn't too easy prove that proposition, because we have the follow restrictions:
$\lambda \in Z : \lambda > 0$
$p \in (2Z + 1) ∩ [2^{\lambda^2−1} , 2^{\lambda^2})$
$x = pq + r$, with $q \in Z∩[0, \frac{2^{\lambda^5}}{p})$ and $r \in Z∩(−2^\lambda, 2^\lambda)$
$\beta \in [-2^\lambda, 2^\lambda]$
So, can someone here prove or give a counter example (some values of $p$, $q$ and $r$) that for a given $x$ of the form $pq + r$ (respecting these restrictions above), we can always find values of $\alpha$ and $\beta$ (also respecting these restrictions) such that $x = p\alpha + 2\beta$ ?
I had tried it, but found nothing.