Two distinct concepts: the greatest binomial coefficient and the numerically greatest term.
Greatest binomial coefficient in (1+x)^n: This is purely about C(n,r), independent of x. The maximum C(n,r) occurs at r = n/2 (if n even, one maximum) or r = (if n odd, two equal maxima). Formally, C(n, floor) = C(n, ceil).
Numerically greatest term in (a+b)^n: This depends on the actual values of a and b. The method uses the ratio / = * |b/a|.
Step 1: Set / >= 1 and solve for r: r <= (n+1)|b|/(|a|+|b|) = m. Step 2: If m is an integer, both and are greatest (equal). If m is not an integer, is the unique greatest term.
Example: Greatest term of (2+3)^9 at x where b/a=3/2. m = 10*3/5 = 6. Since m is integer, and are both greatest.
Important distinction: "Greatest coefficient" means the largest C(n,r) in absolute value, not just C(n,r). For (1+x)^n with x=1, both concepts coincide. For other values of x, they differ.
JEE typically asks for either the greatest term or the rank (position) of the greatest term. The ratio method is the standard approach.