Tuesday, November 29, 2016

number theory - Modular-arithmetic proofs





Read examples 3.2.2 and 3.2.3 and answer the following questions:



Example 3.2.2. Find a solution to the congruence 5x11mod19



Solution. If there is a solution then, by Theorem 3.1.4, there is a solution within the set {0,1,2,,18}. If x=0, then 5x=0, so 0 is not a solution. Similarly, for x=1,5x=5; for x=2,5x=10; for x=3,5x=15; and for x=4,5x=20.None of these are congruent to 11mod19. so we have not yet found a solution. However, when x=6,5x=30, which is congruent to 11mod19.Thus, x6mod19 is a solution of the congruence.



Example 3.2.3 Show that there is no solution to the congreuce x23mod5



Proof. If x=0, then x2=0; if x=1, then x2=1; if x=2, then x2=4; if x=3, then x2=9,which is congruent to 4mod5; and if x=4, then x2=16 which is congruent to 1mod5. If there was any solution, it would be congruent to one of {0,1,2,3,4} by Theorem 3.1.4. Thus, the congruence has no solution.

Theorem 3.1.4



For a given modulus m, each integer is congruent to exactly one of the numbers in the set {0,1,2,,m1}.



(from UTM "A Readable Introduction to Real Mathmatics" Chapter 3)









Questions:



a) For any two integers a and b, prove that ab=0 implies a=0 or b=0. Prove that this is still true in mod prime numbers but not true in mod a composite number.



b)Here is how we prove a2=b2 implies a=±b:
a2=b2a2b2=0(ab)(a+b)=0


ab=0a+b=0

Is this conclusion valid in modular arithmetic modm: does a2b2(modm) implies a±b(modm)? Either prove, or give a counterexample.



c) Given integers m and 1<a<m, with a|m, prove that the equation ax1(modm) has no solution.(That is, if m is composite, and a is a factor of m then a has no multiplicative inverse.)








a) First part should be a easy proof,



But i'm not sure what it means by Prove that this is still true in mod prime numbers

but not true in mod a composite number



How does this related with first part.




Is it means a,b,mN,prime(m)(ab0modm(a0modmb0modm))



And if m is not prime implies otherwise?



b) WTS a,b,mN,a2b2modma±bmodm



The converse is true, but my guess is there might be some counter examples for this one.



c) mZ,a(1,m)Z,amax1modm has no solution




Where should I start for c)?



Any help or hint or suggestion would be appreciated.


Answer



Here's a counterexample for b). Let m=8,a=1 and b=3. Then a2b2(mod8), but a±b(mod8).



For c), am1<a<mm=ka, where k0(modm). So ka0(modm). Now 0kaa1k(modm). ⇒⇐.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...