1.Let u and v be two positive integers with u/3<v<u/2.Then u mod v = u−2v.
2.Let u and v be two positive integers with u>v and let gcd(u,v) represent the greatest common divisor of u and v. If u and v are both odd, then gcd(u,v)=gcd(u−v,v)
How do I solve these questions? Can you share the steps to these quiz problems?
Asked my prof and he says:In general, exercising in some rudimentary basic number theory, e.g. to see how modp behaves, helps. The simplest way is of course just to use the definition of remainder and quotient: For any two positive integers u and v there exist unique non-negative integers q and r such that u=qv+r and 0≤r<v. Just manipulating these q and r alone one can accomplish a lot (personal experience).