use the index arithmetic to find the remainder when $46^{88}$ times $5^{400}$ is divided by $29$.
I have solved this using typical modulo operations
first by reducing $46$ to $17$ then finding the order of $17$ and dividing $88$ by the order. which in this case is $4$ so it leaves me with $1$ times $5^{400}$ (mod $29$)
I then find the order of $5$ (mod $29$) which is $14$ and leaves me with
1 times $5^8$ (mod $29$). So i get the answer of $3$(mod $29$)
BUT my professor wants me to use the index arithmetic notation and I am confused on how to go through these steps using that notation.
Any help would be appreciated.