Analyzing the Setup
Welcome, future engineers! Today, we are going to peel back the layers of a problem that might look like a daunting algebraic mess at first glance, but is actually a beautiful exercise in pattern recognition. We are dealing with the cube roots of unity, specifically ω.
Imagine the complex plane. You have the number 1, ω, and ω2 sitting on the unit circle, perfectly spaced at 120∘ intervals. They form an equilateral triangle, a symbol of perfect balance. Our task is to evaluate (1+ω)7 and map it to the form A+Bω.
The Master Key: 1+ω+ω2=0
Before we touch the exponent, we need our master key. The sum of the cube roots of unity is always zero:
This isn't just an equation; it's a geometric statement. If you place these three vectors head-to-tail, they form a closed loop, returning you to the origin. This identity is our secret weapon.
Look at the expression (1+ω). Using our master key, we can rearrange it:
Suddenly, the binomial (1+ω) is replaced by a single term, −ω2. This is the kind of simplification that turns a ten-minute problem into a thirty-second victory.
The Power Struggle
Handling (−ω2)7
Now, we substitute this back into our original expression:
Here is where the trap lies. We are raising a negative term to an odd power, 7. Remember, a negative number raised to an odd power remains negative.
So, (−ω2)7 becomes −ω2⋅7, which is −ω14. Do not let the negative sign vanish! It is a common mistake, but you are better than that.
The Cyclic Nature of ω
Now we face −ω14. How do we handle such a high power? We invoke the second fundamental property: ω3=1.
This means the powers of ω are cyclic. Every time you hit a multiple of 3 in the exponent, it resets to 1. Let's divide 14 by 3:
This means ω14=(ω3)4⋅ω2. Since ω3=1, this simplifies to 14⋅ω2=ω2. Our expression −ω14 has now collapsed into −ω2.
The Final Comparison
We are almost there. We have −ω2, but the problem asks for the form A+Bω. We need to get rid of the square.
We return to our master key one last time: 1+ω+ω2=0. This tells us that:
Look at that! The entire expression (1+ω)7 has simplified back to 1+ω. By comparing 1+ω with A+Bω, it is clear that A=1 and B=1.
The final result is the pair (A,B)=(1,1). You see? By using the properties of the roots rather than brute-force expansion, we navigated through the complexity with ease. Keep this mindset for your JEE journey: look for the symmetry, use the identities, and the path will reveal itself.