Show that there is a positive integer no such that for any i
Solution
3.
Given n = 6x + 7y, thus n = 6(x+y) + y = 6z + y
Now z = n/6 and y = n%6, and that does the job ;) find x from z and y
4.
277mod3 = (238mod3)(239mod3) mod 3 = (238mod3)2 (2mod3) mod 3
= (219mod3)4(2 mod 3) mod 3
= [ (210mod3 . 29mod3 )4(2 mod 3) ] mod 3
= [ (1.2)4(2) ] mod 3 = 32 mod 3 = 2
5.
Inverse of 23 modulo 24
Using Euler\'s theorem, gcd( 23, 24 ) = 1 as 23 is a prime number
Now, Euler totient value( 24 ) = 24*( 1 - 1/2 )*(1 - 1/3 ) = 8
So, we have that 23-1 mod 24 = 238-1mod 24 = 237mod 24 =23
6.
Say x belongs to X ( some set, whose elements we give as input on P and Q )
First equation is true only when any one element from X satisfies P and some other element satisfies Q. That is, it is not necessary that some element has to satisfy both P and Q.
Second is true only when some element from X, satisfies both P and Q
Clearly not logically equivalent
