For any real number x, let [x] be the largest integer less than or equal to x. If = 25, then N is
Answer & solution
Answer: 44
Solution
Easy
The bracket [51+25n] is a floor, so it only ever jumps between integer values. Find exactly when it equals 0 and when it equals 1, then count how many 1's you need to make the running total hit 25.
1
When is the floor 0? The term inside is positive but below 1:
Add up the terms until the sum reaches 25. The first 19 terms contribute nothing, then each new term adds 1:
n=1∑N[51+25n]=n=1 to 190+⋯+0+n=20 to N1+1+⋯+1⇒number of 1’s=N−19=25⇒N=44
N=44
The floor is 0 up to n=19 and 1 from n=20 onwards. You need 25 ones, so stop 25 terms after n=20: n=20 to n=44. Hence N=44.
CAT 2022 Slot 1 QA Q17: For any real number x, let [x] be the largest integer less than or equal to x. If ∑ n = 1 N 1 5 + n 25 = 2 — Solution | TheCATExam