I am dealing with ECC in these days which heavily based on finite fields. I want to how to find a inverse of a value in finite field and what is multiplicative inverse and also Congruence
F29- {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 28}
For any integer a, a mod p shall denote the unique integer remainder r , 0 ≤ r ≤ p − 1, obtained upon dividing a by p; this operation is called reduction modulo p.
(i) Addition: 17 + 20 = 8 since 37 mod 29 = 8
(ii) Subtraction: 17 − 20 = 26 since −3 mod 29 = 26
(iii) Multiplication: 17 · 20 = 21 since 340 mod 29 = 21
(iv) Inversion: 17−1 = 12 since 17 · 12 mod 29 = 1 //can't understand how this happen
17⋅12=1+7⋅29≡1 (mod 29) ⇒ 17−1≡12 (mod 29) explain this also