In my series of questions on modular arithmetic, I stumbled upon cases where normal textbooks don't explain much.
Now my problem is to find $c$ when the expression to be solved (right-hand side) includes multiplication and resolves to floating point numbers:
$c ≡ a^{5} ∗ b^{−3} \mod 43$ given that $0 \leq c < 43$ and, $a ≡ 27 \mod 43$ and $b ≡ 19 \mod 43$. ($a$ and $b$ are integers).
By solving the right-hand side, by replacing the values for of a and b:
$c ≡ 27^{5} ∗ 19^{−3} \mod 43 = 1423.768 mod 43$
If I compute this on a calculator, gives: $4.7680$
$c$ must be an integer, should this be approximated to $5$? How should I approach such cases when right-hand side resolves to float numbers and thus the resulting value of the variable of interest?
All inputs are valuable. As mentioned, it's new to me and I am trying hard to understand it. Thank you.