N = 2p*3q ( p nd q are on power) p,q bolong to natural no.
100<N<1000 then find the diff. in max. n mini. value of (p+q)
-
UP 0 DOWN 0 0 3
3 Answers
Lokesh Verma
·2008-10-24 09:52:06
minimum value will be 5
maximum value will be 9
maximum value will be for 2p
minimum value for 3q
Why are these last 2 statements correct?
Lokesh Verma
·2008-10-27 09:21:03
suppose that p+q is smallest for p=a,q=b
p+q is smallest ... so
2p.3q is such that 100<2p.3q<1000
case 1
2p.3q<1000
but 2p.2q<2p.3q<1000
2p+q<1000
so the pair(p+q,0) will also work....
same way for 100<2p.3q
so 100<2p.3q<3p.3q = 3p+q
so the pair (0,p+q) will work as well.
SO for (a,b) satisfying the largest or smallest criterion, it is the same as (a+b,0) and (0,a+b)
Now i guess it is simple to follow and solve :)