Key learning
If revenue grows at x% and cost grows at less than x%, then profit grows at more than x%.Yes, and that's exactly why this question is interesting.
In many DS questions, knowing only percentage changes in revenue and cost is **not sufficient** because the effect on profit depends on the starting values of revenue and cost.
For example:
Revenue = 100, Cost = 90 → Profit = 10
Revenue up 10%, Cost up 5%
New profit = 110 − 94.5 = 15.5
Profit increase = 55%
But:
Revenue = 1000, Cost = 100 → Profit = 900
Revenue up 10%, Cost up 5%
New profit = 1100 − 105 = 995
Profit increase ≈ 10.56%
Different starting values produce different profit increases.
So if the question were:
"By what percent did profit increase?"
or
"Did profit increase by more than 20%?"
then knowing only the percentage changes would generally be **not sufficient** because the answer depends on the original revenue and cost values.
---
Why is this question different?
The question asks:
"Did profit increase by more than 10%?"
Let's write the condition directly.
Last year's profit = R − C
This year's profit = 1.10R − 1.05C
We need:
1.10R − 1.05C > 1.10(R − C)
After simplifying:
0.05C > 0
Since cost must be positive, this is **always true**, regardless of the sizes of R and C.
---
The key insight
Usually, profit percentage change depends on both R and C, so magnitudes matter.
Here, the threshold in the question (**10%**) exactly matches the revenue growth rate (**10%**).
That causes all the R terms to cancel:
1.10R − 1.05C > 1.10R − 1.10C
and the result depends only on whether C > 0.
So although we do not know the absolute values of revenue and cost, we don't need them because the algebra eliminates them.
That's why this particular DS question is sufficient, whereas many other profit-growth DS questions are not.