The Beauty of Simplification
Imagine you are standing before a mountain of notation. You see f(x)=min{[x−1],[x−2],…,[x−10]}.
It looks like a beast, doesn't it? But in JEE Advanced, the most intimidating problems often hide the most elegant solutions. Let's peel back the layers.
The Non-Decreasing Secret
First, let's look at the greatest integer function, [t]. It is a non-decreasing function, meaning if a<b, then [a]≤[b].
Now, look at our arguments: x−10<x−9<⋯<x−1. Because of the non-decreasing property, it is guaranteed that [x−10]≤[x−9]≤⋯≤[x−1].
The minimum of this set is clearly the last term: [x−10]. Just like that, the 'min' operator vanishes!
The Power of Substitution
Now we face the integral:
I=∫010[x−10]dx+∫010([x−10])2dx+∫010∣[x−10]∣dx
Integrating [x−10] directly is messy. Let's use the substitution u=x−10.
When
x=0,
u=−10. When
x=10,
u=0. Our integral becomes:
I=∫−100[u]du+∫−100[u]2du+∫−100∣[u]∣du
Evaluating the Sums
This is where the magic happens. We are integrating a step function over the interval [−10,0].
For
I1=∫−100[u]du, we are summing the values of
[u] on each interval
[k,k+1). This gives us:
(−10)+(−9)+⋯+(−1)=−55
For
I2=∫−100[u]2du, we square those values:
(−10)2+(−9)2+⋯+(−1)2. This is the sum of the first ten squares:
610(11)(21)=385
For I3=∫−100∣[u]∣du, we take the absolute values: 10+9+⋯+1=55.
The Grand Finale
Adding them up: −55+385+55.
The −55 and +55 cancel out, leaving us with 385.
It is elegant, it is precise, and it is beautiful. You have conquered the beast!