The Riemann sum-to-integral conversion is a standard JEE technique for evaluating limits of the form lim sum.
Standard Form: lim(n->inf) * sum(r=1 to n) f = integral(0 to 1) f(x) dx
Generalized Form: lim(n->inf) * sum(r=a to bn) f = integral(a/n... -> 0 to b) ...
More precisely: if the sum goes from r = an to r = bn, replace r/n by x, and limits become a to b.
Common Examples:
- lim [1/n * ] = integral(0,1) x dx = 1/2
- lim [1^k+2^k+...+]/n^(k+1) = integral(0,1) dx =
- lim [+...+1/2n] = integral(0,1) dx = ln 2
- lim [(n!)^] = e^(-1) (using integral(0,1) lnx dx = -1)
- lim [(2n choose n)]^ = 4 (using integral(0,1) [ln x + ln(1-x)] dx)
Strategy:
- Factor out 1/n from the sum
- Express each term as *f
- Identify f and the limits
- Write the integral
- Evaluate
Pitfall: When the sum has unusual limits (e.g., r=1 to 3n), the integral limits adjust: r/n goes from 1/n->0 to 3n/n=3, giving integral(0 to 3).