Analyzing the Setup
Welcome, future engineers! Today, we are going to dissect a problem that might look like a chaotic mess of piecewise definitions, but is actually a beautifully structured puzzle. We are dealing with a function f(x) defined by a 'running maximum.'
This is a classic JEE concept that tests your ability to visualize how a function evolves over time. Let's peel back the layers.
Decoding the Cubic
First, let's look at the region x≤2. The definition f(x)=maxt≤x{t3−3t} is not just a formula; it is a memory. Imagine you are tracking the altitude of a climber.
The climber starts at t=−2 and moves forward. The 'running maximum' is the highest altitude they have reached so far. Let g(t)=t3−3t.
To understand its behavior, we find its critical points:
g′(t)=3t2−3=3(t−1)(t+1)
We have a local maximum at t=−1 with g(−1)=2 and a local minimum at t=1 with g(1)=−2. For x≤−1, the function is climbing, so the running maximum is just g(x).
But once we pass x=−1, the curve dips. The running maximum, however, refuses to drop. It stays at the peak value of 2 until the curve g(x) climbs back up to 2 at x=2.
Thus, for x∈(−1,2], our function is a flat, constant line: f(x)=2.
The Differentiability Gauntlet
Now, let's hunt for the points of non-differentiability, m. We check the boundaries: x=2,3,4, and 5.
At x=2, the left limit is 2 and the right limit (from the parabola x2+2x−6) is 22+2(2)−6=2. It is continuous!
However, the left derivative is 0 (derivative of a constant), and the right derivative is 2x+2, which is 6 at x=2. Since $0
eq 6$, we have a sharp corner. That is our first point.
At x=3, the left limit is 32+2(3)−6=9, and the right limit (from the greatest integer function [x−3]+9) is [3−3]+9=9. Continuous again!
The left derivative is 2(3)+2=8, and the right derivative is 0. Another sharp corner! At x=4 and x=5, the function jumps. A jump means discontinuity, and discontinuity implies non-differentiability.
Counting them all up, we have m=4 points of non-differentiability.
The Integral
Finally, we calculate
I=∫−22f(x)dx. Because the definition of
f(x) changes at
x=−1, we split the integral:
I=∫−2−1(x3−3x)dx+∫−122dx
The first part is a standard integral:
[4x4−23x2]−2−1
Plugging in the limits, we get:
(41−23)−(416−212)=−45−(−2)=43
The second part is just the area of a rectangle with width
3 and height
2, which is
6. Adding them together:
I=43+6=427
We have found our pair (m,I)=(4,427). You have just conquered a complex piecewise function by breaking it down into its fundamental geometric and algebraic parts. Keep this analytical mindset, and no JEE problem will ever be too daunting!