I solved it like this, still time consuming one
A:
day 1 temp: 60/2 , diff from prev: 0
day 2 temp: 70/2 = (140/4) , diff from prev:
+10/(2) day 3 temp: 130/4 = (260/8) , diff from prev:
-10/ (2 ^ 2) day 4 temp: 270/8 = (540/16) , diff from prev:
+10/(2^3) .
. and goes on
So the point is diff between (n th) and (n-1 th) day is
-------------------------(1) +10/(2^(n-1)) => if n is even
-10/(2^(n-1)) => if n is oddNow B:
day 1 temp: 70/2 , diff from prev: 0
day 2 temp: 60/2 = (120/4) , diff from prev:
-10/(2) day 3 temp: 130/4 = (260/8) , diff from prev:
+10/ (2 ^ 2) day 4 temp: 250/8 = (500/16) , diff from prev:
-10/(2^3) day 5 temp: 510/16 , diff from prev:
+10/(2^4) .
. and goes on
So the point is diff between (n th) and (n-1 th) day is
-------------------------(1) -10/(2^(n-1)) => if n is even
+10/(2^(n-1)) => if n is oddTA(4) = 30 + (10/2) - (10/2^2) + (10/2^3)
TA(29) = 30 + (10/2) - (10/2^2) + (10/2^3) - ...................................... -(10/2^28)
TB(4) = 35 - (10/2) + (10/2^2) - (10/2^3)
TB(29) = 35 - (10/2) + (10/2^2) - (10/2^3) - ...................................... +(10/2^28)
Let a = (10/2) - (10/2^2) + (10/2^3),
b = (10/2) - (10/2^2) + (10/2^3) - (10/2^4)...................................... -(10/2^28)
Also let us check if a > b,
(10/2) - (10/2^2) + (10/2^3) > (10/2) - (10/2^2) + (10/2^3) - (10/2^4)...................................... -(10/2^28)
=> 0 > - (10/2^4) + (10/2^5) - ....................... -(10/2^28) => this is definitely true => so a > b
----------------------------------- eqn (2)so TA(4) = 30 + a, TA(29) = 30 + b
TB(4) = 35 - a , TB(29) = 35 - b
Now let us see the answer choices
I. TA(4) - TB(4) > TA(29) - TB(29)from above, (30 + a) - (35 - a) > (30 + b) - (35 - b)
=> rearranging => 2a > 2b => a > b
from
eqn -----------------(2) => a > b
So this choice is true
II. TA(4) + TB(4) = TA(29) + TB(29)from above, (30 + a) + (35 - a) = (30 + b) + (35 - b) => rearranging 65 = 65 => which is true.
so this choice also true
III. |TA(n+1) - TA(n)| = |TB(n+1) - TB(n)| for n>3From above
eqn ------------------(1),
for all n for both the cities, the absolute of diff between two days , |10/2^(n-1)|.
So this choice also true
Hence E