The system is explained here: https://cryptography.fandom.com/wiki/Rabin_cryptosystem
I am trying to prove that the roots
$r \equiv y_p \cdot p \cdot m_q + y_q \cdot q \cdot m_p \pmod{N}\\ -r \equiv N - r \pmod{N}\\ s \equiv y_p \cdot p \cdot m_q - y_q \cdot q \cdot m_p \pmod{N}\\ -s \equiv N - s \pmod{N}$
are in fact the roots you get in decryption. Where $N=pq; p, q$ are two primes.
So far I have
let \begin{align*} r &\equiv y_p \cdot p \cdot m_q + y_q \cdot q \cdot m_p \pmod{N}\\ r^2 &\equiv (y_p \cdot p \cdot m_q + y_p \cdot p \cdot m_q)(y_p \cdot p \cdot m_q + y_q \cdot q \cdot m_p) \pmod{N} \\ &\equiv y_p^2 \cdot p^2 \cdot m_q^2 + 2(y_p \cdot p \cdot m_q \cdot y_q \cdot q \cdot m_p) + y_q^2 \cdot q^2 \cdot m_p^2 \pmod{N} \\ &\equiv y_p^2 \cdot p^2 \cdot m_q^2 + y_q^2 \cdot q^2 \cdot m_p^2 \pmod{N} \end{align*}
I don't know that the next steps are to get to
$r^2 \equiv m \pmod{N}$