How do I evaluate all the square roots of 4 mod 33 using Chinese Remainder Theoram. I know we can use mod 33 = 11 x 3. I'm not sure how to proceed to the next step
2026-03-29 12:12:08.1774786328
Chinese Remainder Theoram
161 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Have you tried brute force? The numbers are small enough.
$2$ is an obvious one. To get the others, just keep adding $33$ repeatedly to $4$ and check if it's a perfect square at each step. Upper limit (the point when you can stop) is after $32 \times 32 = 1024$.
$13$ is the next one.
Actually, because the others will be negatives mod 33, you can already tell that $-2$ and $-13$, a.k.a. $31$ and $20$, will be answers as well. I only have to check up to $17$ for this reason (because $17 \equiv -16$ mod $33$).
So the full list is: $2, 13, 20, 31$