View Single Post
Old 2009 November 1st, 08:17 AM   #17 (permalink)
A.A.A
I JUST got here.
 
Join Date: Nov 2008
Posts: 2
A.A.A just joined TestMagic.
Here is a different approach ..

To find the Product of all even integers from 2 to n inclusive means finding the product of all integers from 2 to n inclusive that are multiple of 2.

= { ( Last term - First term ) / 2} +1 , so

h(n) = { (n-2) / 2 } + 1 , now we should find p which = h(100)+1

Using the above formula and plugin 100 for n

h(100) = { ( 100-2 ) / 2 } +1

h(100) = (98/2) +1

h(100) = 49 + 1 = 50

Since P= h(100) + 1 then,

p = 50 + 1 = 51 which is greater than 40 .. E is the answer.
A.A.A is offline   Reply With Quote