CAT 2022 Slot 1 — QA Question 17
Basics (Functions)Easy
For any real number x, let [x] be the largest integer less than or equal to x. If = 25, then N is
Answer & solution
Correct answer: 44
Answer: 44
Solution
Easy
The bracket is a floor, so it only ever jumps between integer values. Find exactly when it equals and when it equals , then count how many 's you need to make the running total hit .
1
When is the floor ? The term inside is positive but below :
2
When is the floor ? The term sits in :
3
Add up the terms until the sum reaches . The first terms contribute nothing, then each new term adds :
The floor is up to and from onwards. You need ones, so stop terms after : to . Hence .