0

What is the method of solving similar problems like given below $$x^7 \equiv 25\pmod{54}$$

Bill Dubuque
  • 272,048
  • 1
    Take $x=43$ this is the solution – Dr. Sonnhard Graubner Dec 06 '19 at 15:46
  • 1
    @Dr.SonnhardGraubner The question is not about what the solution is but about the method. – Arnaud Mortier Dec 06 '19 at 15:48
  • 1
    Hint: $x$ is coprime to $54$ so $x^{18}\equiv 1$ so expt arith is $!\bmod 18$ so you need only raise both side to power $,1/7\equiv -5\pmod{18},$ yielding $,x\equiv 25^{-5}\equiv 43,\ $ i.e take the $7$'th root of both sides by raising to power $,1/7.\ $ The question is a dupe and will likely be closed as such. – Bill Dubuque Dec 06 '19 at 15:49

1 Answers1

1

First solve $x^7\equiv25\bmod27$ as follows.

Note that $x^{18}\equiv1\bmod27$ by Euler's theorem, so

$x^7\equiv-2\bmod27\implies (x^7)^{13}\equiv x^{91}\equiv (x^{18})^5x\equiv x\equiv(-2)^{13}\bmod 27.$

Now $2^5=32\equiv5\bmod27$, so $2^{10}\equiv25\equiv-2\bmod27,$ so $x\equiv(-2)^{13}\equiv2\times8\equiv16\bmod 27.$

To have $x^7\equiv25\bmod 54$, we also need $x\equiv1 \bmod2$. Can you take it from here?

J. W. Tanner
  • 60,406