So I'm using the fact that 2 is a primitive root modulo 53, I'm solving $x^5 \equiv 8\mod{53}$
Originally I was trying to rewrite both sides in terms of two so had the following:
let $x=2^y$ for y between 1 and 52...
$(2^y)^5 \equiv 8\mod{53}$,
$2^{5y} \equiv 2^3\mod{53}$,
$5y \equiv 3\mod{53}$
which I believe has a solution of $y=32$ so for $x^5 \equiv (2^{32})^5 \equiv 8 \mod{53}$.
I thought there would be multiple solutions so looked at a different source following a slightly different method:
again let $x=2^y$ for y between 1 and 52...
$(2^y)^5 =8 \mod{53} $
$2^{5y} =8=2^3$
$2^{5y-3}=1$ as 2 is a primitive root, the order is 52 and therefore 52 must divide $5y-3$, so $y=11$ and $x=2^11$ so $x^5 \equiv (2^{11})^5 \equiv 8\mod{53}$.
If there are any errors in either method please let me know as I'm assuming it is my fault and these should result in the same answer? Any advice on which is correct and how to find other solutions would be really appreciated