In mathematics there are often two ways of answering a question,
Lots of thinking and little working,
Little thinking and lots of working.
I was wondering what the most extreme cases of this would be? Questions where the "usual" answer is just to plough through the working and hope everything turns out all right, but a much more subtle solution exists (and ideally this subtle solution would point out what makes the question "tick", as it were).
For example,
Question: Prove that the symmetric difference operation is associative.
The symmetric difference of two sets, $S \triangle T$, is defined to be $(S\cup T)\setminus (S \cap T)$. Now, one could simply plough through the working, but the working is tedious and there is a "trick" half way through it. However, a much more subtle solution exists. It requires a bit of setting-up, but is overall much neater.
Proof: The idea is that $S\triangle T$ "looks like" addition mod $2$. To see this, notice that,
If $x\in S$, $x\in T$ then $x\not\in S\triangle T$, which corresponds to $1+1=0 \text{ mod }2$
If $x\in S$, $x\not\in T$ then $x\in S\triangle T$, which corresponds to $1+0=1\text{ mod }2$
If $x\not\in S$, $x\in T$ then $x\in S\triangle T$, which corresponds to $0+1=1\text{ mod }2$
If $x\not\in S$, $x\not\in T$ then $x\not\in S\triangle T$, which corresponds to $0+0=0\text{ mod }2$
This means that showing $(S\triangle T)\triangle U=S\triangle (T\triangle U)$ now comes down to showing that addition mod $2$ is associative. And it is, which is easily checked. So we're done.
I'm not sure these are good examples of what you want; but, for what it's worth:
This is well known:
Imagine you are studying infinite series and are presented with the following problem:
The tedious way is to compute the distance $s_n$ the bee travels at each stage, and then form the infinite series $s_n$ and compute its sum.
The easy way is to note the bee travels up to the time when the trains collide (poor bee!). Since the trains collide after one hour, the bee travels a total distance of two miles.
Lots of examples occur in probability:
The tedious way is to compute for each positive integer $n$ the probability that $A$ wins on round $n$, and then compute the sum of those probabilities.
The clever way is to note that if both players miss on the first round, then given this, the probability that $A$ wins is the same as the original probability that $A$ wins.
So, if
$\ \ \ \ A_w$ is the event that $A$ wins the duel
$\ \ \ \ A_1$ is the event that both players hit on the first round
$\ \ \ \ A_2$ is the event that $A$ hits and $B$ misses on the first round
$\ \ \ \ A_3$ is the event that $A$ misses and $B$ hits on the first round
$\ \ \ \ A_4$ is the event that both miss on the first round,
then $$\eqalign{ P(A_w) &=P(A_w\cap A_1 )+ P(A_w\cap A_2 )+P(A_w\cap A_3 )+P(A_w\cap A_4 )\cr &= 0+ a(1-b)\cdot1+0+ (1-a)(1-b) P(A_w| A_4)\cr &= a(1-b)\cdot1+ (1-a)(1-b) P(A_w ) }, $$ which can be solved for $P(A_w)$.