The Dance of Functions
Why They Never Meet
Welcome, future IITians! Today, we are going to explore a problem that might look like a standard intersection puzzle, but it is actually a beautiful lesson in the power of range analysis.
We are tasked with finding the number of points of intersection between two very different curves: a trigonometric wave, y=2sinx, and a quadratic parabola, y=5x2+2x+3.
When you see a problem like this, your first instinct might be to try and solve for x by setting the equations equal to each other. But hold on! Before you dive into complex algebra, let's pause and visualize the geometry. This is where the magic happens.
Phase 1
The Oscillating Wave
Let's first analyze our trigonometric friend, y=2sinx. We know that the basic sine function, sinx, is a well-behaved creature.
It is strictly bounded, oscillating rhythmically between −1 and 1 for all real values of x. When we multiply this by 2, we are simply scaling the amplitude.
The wave now stretches, reaching a peak of 2 and a trough of −2. Mathematically, we can write this as:
This means that no matter what value of x you choose, the y-value of this curve will never, ever exceed 2. This is our upper boundary, our ceiling.
Phase 2
The Upward-Opening Parabola
Now, let's turn our attention to the quadratic curve, y=5x2+2x+3. Because the coefficient of the x2 term is 5, which is positive, we know this parabola opens upwards.
It is like a cup, and it has a lowest point—a vertex—that we need to find. To find this minimum, we use the classic technique of completing the square.
Let's factor out the 5 from the x terms:
To make the expression inside the parentheses a perfect square, we take half of the coefficient of x (which is 51), square it to get 251, and then add and subtract it inside the bracket:
Simplifying this, we get:
This simplifies further to:
Phase 3
The Moment of Truth
Now, look at the expression y=5(x+51)2+2.8. Since the squared term 5(x+51)2 is always greater than or equal to zero, the smallest value this parabola can ever take is 2.8, which occurs when x=−51.
This is our floor. Now, let's compare our two findings.
The sine wave is trapped below the line y=2. The parabola is trapped above the line y=2.8.
Since 2.8 is strictly greater than 2, there is a permanent gap of 0.8 units between these two curves. They are like two ships passing in the night, separated by a vast, unbridgeable ocean.
They will never intersect. Therefore, the number of points of intersection is exactly 0.
This is the beauty of range analysis—it allows us to solve complex problems by understanding the fundamental nature of the functions rather than getting lost in the weeds of calculation. Keep this intuition sharp, and you will conquer any problem the JEE throws your way!