Due Monday September 9th, 2024

  1. Write me a few sentences “check-in”; how do you feel the class is going?  What are challenges, what can I do to help with those?
  2. Use successive squaring to compute $3^{133} \pmod{1009}$.  You can use a calculator for the multiplications/reductions, but show all steps of the algorithm.  If you learned about double-and-add (see last daily post), you can use that if you prefer.
  3. Some fun modular arithmetic, part one:
    1. Verify that $7$ is coprime to $12$ (factor them both).
    2. Compute $\varphi(12)$.
    3. Explain what Euler’s theorem says about powers of $7$ modulo $12$.  Why did we check the last two things?
    4. Compute $7^{115} \pmod{12}$ by hand using Euler’s Theorem.  Calculator is ok for multiplications and reductions, but show all steps.
  4. Some fun modular arithmetic, part two:
    1. Verify that $59$ is coprime to $26$ (factor them both).
    2. Compute $\varphi(26)$ (it’s important you get this right, check your answer with the Sage Sandbox (the euler_phi function is listed there)).
    3. Compute $59^{(7^{115})} \pmod{26}$ by hand (this may use the previous problem…..)
  5. Use what you learned from the last few problems to compute $3^{(11^{200006})} \pmod{50}$ “by hand” (this will always mean calculator is ok for multiplications and reductions, but show steps).
  6. Observe (verify) that $\varphi(15) = 8$ and $3^8 = 6 \pmod{15}$.  (You can check these on Sage or by hand or both.) This looks like it contradicts Euler’s Theorem.  Why is it ok?
  7. Catch up on last daily post problems or any other studying.