MHT-CET Maths · Applications of Derivative

Maxima, Minima & Optimisation

Locate the peaks and valleys of a function: find the critical points where the derivative is zero, classify them with the first- or second-derivative test, then apply the machinery to constrained sets, parameter conditions, and real word problems.

Why this matters

This is the largest and hardest subtopic in the whole chapter — 42 PYQs, heavily HARD. Everything else in Applications of Derivatives feeds into it. The MHT-CET question factory recycles a handful of templates relentlessly: the extreme-value-parameter family (y = a log x + bx² + x, extrema at x = −1 and x = 2), the maximum of a cubic on a set S = {x : quadratic ≤ 0}, wire-cutting and open-tank optimisation, profit maximisation, and the minimum of a sec θ − b tan θ. The recurring traps live here too: the second-derivative sign (f″ < 0 is a MAX, not a min), forgetting to check the endpoints of a constrained set, and dropping the AM-GM shortcut that turns a two-line derivative problem into one line.

Concept 1 of 9

Critical Points — Where the Slope Vanishes

Intuition

A smooth curve can only turn from rising to falling (or vice versa) where its tangent is momentarily flat — where the slope is zero. Those points, together with any point where the derivative fails to exist, are the ONLY candidates for a local peak or valley. Everything in this subtopic starts by finding them.

Definition

A critical point (or stationary point) of ff is a value x=cx = c in the domain where f(c)=0f'(c) = 0 or f(c)f'(c) does not exist.

  • Local maxima and minima can occur only at critical points — but a critical point need NOT be an extremum (it may be a point of inflection, e.g. x=0x = 0 for f(x)=x3f(x) = x^3).
  • So the recipe is always: (1) compute f(x)f'(x); (2) solve f(x)=0f'(x) = 0 (and note where it is undefined); (3) classify each candidate with the first- or second-derivative test.

Critical-point condition

f(c)=0orf(c) does not existf'(c) = 0 \quad \text{or} \quad f'(c) \text{ does not exist}
  • ca candidate for a local maximum or minimum

Worked example

Find the critical points of f(x)=x36x2+9x+2f(x) = x^3 - 6x^2 + 9x + 2.
  1. Differentiate: f(x)=3x212x+9f'(x) = 3x^2 - 12x + 9.
  2. Factor: f(x)=3(x24x+3)=3(x1)(x3)f'(x) = 3(x^2 - 4x + 3) = 3(x - 1)(x - 3).
  3. Set f(x)=0f'(x) = 0: x=1x = 1 and x=3x = 3.
Answer:Critical points at x=1x = 1 and x=3x = 3 (each still needs classifying).
Practice this conceptself-check · 4 quick reps

Try it yourself

Find the critical points of f(x)=x55x4+5x310f(x) = x^5 - 5x^4 + 5x^3 - 10.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    Critical points of f(x)=x24xf(x) = x^2 - 4x?
  2. 2.
    Critical points of f(x)=x33xf(x) = x^3 - 3x?
  3. 3.
    Is f(c)=0f'(c) = 0 enough to guarantee an extremum at cc?
  4. 4.
    Where can f(x)=x2f(x) = |x - 2| have an extremum?

f(c)=0f'(c) = 0 is NECESSARY, not sufficient

A critical point is a CANDIDATE, not a guarantee. f(x)=x3f(x) = x^3 has f(0)=0f'(0) = 0 yet no extremum at 00 — the slope touches zero and keeps the same sign (a point of inflection). Always confirm with a genuine sign change of ff' or the sign of ff''.

Don't forget points where ff' is UNDEFINED

For f(x)=x2/3+(x2)2/3f(x) = x^{2/3} + (x-2)^{2/3}, f(x)=23(x1/3+(x2)1/3)f'(x) = \tfrac{2}{3}\big(x^{-1/3} + (x-2)^{-1/3}\big) is undefined at x=0x = 0 and x=2x = 2 — those are critical points too. Restricting to f=0f' = 0 alone misses them.

Concept 2 of 9

The First-Derivative Test

Intuition

Walk along the curve through a critical point. If the slope switches from uphill to downhill (++ to -), you just crested a peak — a local maximum. If it switches from downhill to uphill (- to ++), you passed through the bottom of a valley — a local minimum. If the slope keeps the same sign, it is neither.

Definition

At a critical point cc, examine the sign of ff' just to the left and just to the right:

  • ff' changes ++ \to - \Rightarrow local maximum at cc.
  • ff' changes +- \to + \Rightarrow local minimum at cc.
  • ff' does not change sign \Rightarrow neither (a point of inflection).

This test always works — even when ff'' is awkward to compute or when f(c)=0f''(c) = 0 leaves the second-derivative test inconclusive. Factor f(x)f'(x) into linear/quadratic pieces and read the sign in each interval.

First-derivative test

f:+  max,f:+  minf' : + \to - \ \Rightarrow\ \text{max}, \qquad f' : - \to + \ \Rightarrow\ \text{min}

Worked example

Use the first-derivative test to classify the critical points of f(x)=2x39x2+12x+1f(x) = 2x^3 - 9x^2 + 12x + 1.
  1. f(x)=6x218x+12=6(x1)(x2)f'(x) = 6x^2 - 18x + 12 = 6(x - 1)(x - 2), critical points x=1,2x = 1, 2.
  2. On x<1x < 1: both factors negative f>0\Rightarrow f' > 0. On 1<x<21 < x < 2: (x1)>0,(x2)<0f<0(x-1) > 0, (x-2) < 0 \Rightarrow f' < 0.
  3. At x=1x = 1: ff' goes ++ \to - \Rightarrow local maximum.
  4. On x>2x > 2: both factors positive f>0\Rightarrow f' > 0. At x=2x = 2: ff' goes +- \to + \Rightarrow local minimum.
Answer:Local maximum at x=1x = 1; local minimum at x=2x = 2.
Practice this conceptself-check · 4 quick reps

Try it yourself

Use the first-derivative test to find where f(x)=x42x2+3f(x) = x^4 - 2x^2 + 3 has a local maximum.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    ff' changes +- \to + at cc. What is cc?
  2. 2.
    ff' keeps the same sign through cc. What is cc?
  3. 3.
    f(x)=5x2(x1)(x3)f'(x) = 5x^2(x-1)(x-3): is x=0x = 0 an extremum?
  4. 4.
    f(x)=(x2)(x4)f'(x) = (x-2)(x-4): classify x=2x = 2.

From the bank · past-year question

Example 2Applications of DerivativeMODERATE
The function x55x4+5x310x^{5}- 5x^{4}+ 5x^{3}- 10 has a maximum, when xx is equal to

[Q130 · 21 April Shift I · 2025]

A repeated root of ff' is NOT an extremum

For f(x)=5x2(x1)(x3)f'(x) = 5x^2(x-1)(x-3), the factor x2x^2 means ff' touches zero at x=0x = 0 without changing sign — so x=0x = 0 is neither a max nor a min. Only x=1x = 1 and x=3x = 3 (simple roots, genuine sign flips) are extrema.

Concept 3 of 9

The Second-Derivative Test

Intuition

The second derivative measures how the curve bends. At a critical point, if the curve is concave up — like the bottom of a bowl — you are at a minimum; if it is concave down — like the top of a dome — you are at a maximum. So the SIGN of ff'' at the critical point tells you the answer directly.

Definition

At a critical point cc (where f(c)=0f'(c) = 0):

  • f(c)<0f''(c) < 0 \Rightarrow curve concave down \Rightarrow local maximum.
  • f(c)>0f''(c) > 0 \Rightarrow curve concave up \Rightarrow local minimum.
  • f(c)=0f''(c) = 0 \Rightarrow inconclusive — fall back to the first-derivative test.

This is usually the fastest test when ff'' is easy to compute at the critical point.

Second-derivative test

f(c)<0local max,f(c)>0local minf''(c) < 0 \Rightarrow \text{local max}, \qquad f''(c) > 0 \Rightarrow \text{local min}
  • f''(c)concavity at the critical point c
local max (f″<0)local min (f″>0)tangent flat at both

Worked example

Classify the critical points of f(x)=x55x4+5x310f(x) = x^5 - 5x^4 + 5x^3 - 10 that give a maximum.
  1. f(x)=5x2(x1)(x3)f'(x) = 5x^2(x - 1)(x - 3), critical points x=0,1,3x = 0, 1, 3.
  2. f(x)=20x360x2+30xf''(x) = 20x^3 - 60x^2 + 30x.
  3. At x=1x = 1: f(1)=2060+30=10<0f''(1) = 20 - 60 + 30 = -10 < 0 \Rightarrow local maximum.
  4. At x=3x = 3: f(3)=540540+90=90>0f''(3) = 540 - 540 + 90 = 90 > 0 \Rightarrow local minimum. (At x=0x = 0, f(0)=0f''(0) = 0: inconclusive, and the first-derivative test shows no sign change.)
Answer:Maximum at x=1x = 1.
Practice this conceptself-check · 4 quick reps

Try it yourself

Find where f(x)=x2/3+(x2)2/3f(x) = x^{2/3} + (x - 2)^{2/3} attains its maximum, and the maximum value.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    f(c)<0f''(c) < 0 at a critical point means?
  2. 2.
    f(c)>0f''(c) > 0 at a critical point means?
  3. 3.
    f(c)=0f''(c) = 0 — what next?
  4. 4.
    f(x)=x2+128x (x>0)f(x) = x^2 + \tfrac{128}{x}\ (x>0): min at x=4x = 4? Check ff''.

From the bank · past-year question

Example 3Applications of DerivativeEASY
The function f(x)=x36x2+9x+2f(x) = x^3 - 6x^2 + 9x + 2 has maximum value when xx is

[Q124 · 14th May Shift 2 · 2024]

f<0f'' < 0 is a MAXIMUM (the sign trips everyone)

Concave DOWN (f<0f'' < 0) is a local MAX; concave UP (f>0f'' > 0) is a local MIN. Students routinely guess the opposite. Picture the shape: a dome (\cap, f<0f'' < 0) peaks; a bowl (\cup, f>0f'' > 0) bottoms out.

When f(c)=0f''(c) = 0, the test says NOTHING

f(c)=0f''(c) = 0 is inconclusive — cc could be a max, a min, or an inflection. Do not conclude 'inflection' automatically. Switch to the first-derivative test and read the actual sign change of ff'.

Concept 4 of 9

Extreme Value at a Given Point ⇒ Solve for Parameters

Intuition

If a question TELLS you that a function has an extremum at certain xx-values, that is the same as saying ff' equals zero there. Substitute each given point into f(x)=0f'(x) = 0, get one equation per point, and solve the resulting linear system for the unknown constants.

Definition

'ff has an extreme value at x=px = p' means f(p)=0f'(p) = 0. With two given extreme points you get two equations in the unknown parameters — a routine linear system. The signature MHT-CET template is y=alogx+bx2+xy = a\log x + bx^2 + x with extrema at x=1x = -1 and x=2x = 2:

y=ax+2bx+1=0.y' = \dfrac{a}{x} + 2bx + 1 = 0.
At x=1x = -1: a2b+1=0-a - 2b + 1 = 0; at x=2x = 2: a2+4b+1=0\tfrac{a}{2} + 4b + 1 = 0. Solving gives a=2a = 2, b=12b = -\tfrac{1}{2} — memorise this pair, because the paper asks for many different combinations of it (a+ba + b, ab+ba\tfrac{a}{b} + \tfrac{b}{a}, a2+2ba^2 + 2b, etc.).

Extremum condition at a given point

f(p)=0for each stated extreme point pf'(p) = 0 \quad \text{for each stated extreme point } p

Worked example

The function f(x)=x3+ax2+bx+cf(x) = x^3 + a x^2 + b x + c has a local extremum at x=1x = 1 and passes through a point where f(1)=0f'(-1) = 0. Find aa and bb.
  1. f(x)=3x2+2ax+bf'(x) = 3x^2 + 2ax + b; the extrema at x=1x = 1 and x=1x = -1 mean f(1)=0f'(1) = 0 and f(1)=0f'(-1) = 0.
  2. At x=1x = 1: 3+2a+b=03 + 2a + b = 0. At x=1x = -1: 32a+b=03 - 2a + b = 0.
  3. Subtract the two: 4a=0a=04a = 0 \Rightarrow a = 0; then b=3b = -3.
Answer:a=0, b=3a = 0,\ b = -3 (so f(x)=3x23f'(x) = 3x^2 - 3, extrema at x=±1x = \pm 1).
Practice this conceptself-check · 4 quick reps

Try it yourself

If y=αlogx+βx3xy = \alpha\log x + \beta x^3 - x has extreme values at x=1x = -1 and x=1x = 1, find α\alpha and β\beta.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    For the alogx+bx2+xa\log x + bx^2 + x family (extrema 1,2-1, 2): a=?, b=?a = ?,\ b = ?
  2. 2.
    Same family: ab+ba=?\dfrac{a}{b} + \dfrac{b}{a} = ?
  3. 3.
    Same family: a2+2b=?a^2 + 2b = ?
  4. 4.
    'Extreme value at x=px = p' translates to which equation?

From the bank · past-year question

Example 4Applications of DerivativeHARD
If y=alogx+bx2+xy=a\log x+bx^{2}+x has its extreme value at x=1x=-1 and x=2x=2, then the value of a+ba+b is

[Q118 · 3rd May Shift 2 · 2023]

Read exactly which combination is asked

Every one of these questions has a=2,b=12a = 2, b = -\tfrac12 at its core, but they ask for different outputs: a+b=32a + b = \tfrac32, ab+ba=174\tfrac{a}{b} + \tfrac{b}{a} = -\tfrac{17}{4}, a2+2b=3a^2 + 2b = 3, or just the pair itself. Solve the system once, then compute the specific expression requested — don't stop at a,ba, b.

logx\log x is natural log, and the x=1x = -1 extremum is formal

Throughout MHT-CET log\log means loge\log_e. The template uses x=1x = -1 as an extreme point by writing logx\log|x| (or reading logx\log x in the extended sense) — treat ddxlogx=1x\dfrac{d}{dx}\log|x| = \dfrac{1}{x} and substitute x=1x = -1 directly.

Concept 5 of 9

Absolute Max/Min on a Constrained Set S

Intuition

When the domain is a set defined by an inequality like {x:x2+3011x}\{x : x^2 + 30 \le 11x\}, first solve the inequality to get the actual interval — usually a short closed interval. Then the absolute maximum or minimum is simply the biggest (or smallest) among the function's values at any interior critical point AND at the two endpoints.

Definition

To find the greatest/least value of ff on a set SS given by a quadratic inequality: 1. Solve the inequality. x2+3011xx211x+300(x5)(x6)0x[5,6]x^2 + 30 \le 11x \Leftrightarrow x^2 - 11x + 30 \le 0 \Leftrightarrow (x-5)(x-6) \le 0 \Leftrightarrow x \in [5, 6]. 2. Find interior critical points of ff that lie inside the interval (often there are none — ff may be monotonic on such a short interval). 3. **Evaluate ff at every critical point in the interval and at both endpoints**; the largest is the absolute max, the smallest the absolute min. For f(x)=3x318x2+27x40f(x) = 3x^3 - 18x^2 + 27x - 40, f(x)=9(x3)20f'(x) = 9(x-3)^2 \ge 0, so ff is increasing on [5,6][5,6] — the max is at x=6x = 6: f(6)=122f(6) = 122.

Absolute extremum on a closed interval

max[a,b]f=max{f(a), f(b), f(ci)}\max_{[a,b]} f = \max\big\{ f(a),\ f(b),\ f(c_i) \big\}
  • a, bendpoints of the interval from solving the inequality
  • c_icritical points of f lying inside (a, b)

Worked example

Find the greatest value of f(x)=x33x+5f(x) = x^3 - 3x + 5 on S={xR:x240}S = \{x \in \mathbb{R} : x^2 - 4 \le 0\}.
  1. Solve SS: x240x[2,2]x^2 - 4 \le 0 \Rightarrow x \in [-2, 2].
  2. f(x)=3x23=3(x1)(x+1)=0x=±1f'(x) = 3x^2 - 3 = 3(x - 1)(x + 1) = 0 \Rightarrow x = \pm 1, both inside [2,2][-2, 2].
  3. Evaluate every candidate: f(2)=8+6+5=3f(-2) = -8 + 6 + 5 = 3, f(1)=1+3+5=7f(-1) = -1 + 3 + 5 = 7, f(1)=13+5=3f(1) = 1 - 3 + 5 = 3, f(2)=86+5=7f(2) = 8 - 6 + 5 = 7.
  4. The greatest of {3,7,3,7}\{3, 7, 3, 7\} is 77.
Answer:Greatest value =7= 7 (at x=1x = -1 and x=2x = 2).
Practice this conceptself-check · 4 quick reps

Try it yourself

Find the minimum value of f(x)=2x315x2+36x48f(x) = 2x^3 - 15x^2 + 36x - 48 on A={x:x2+209x}A = \{x : x^2 + 20 \le 9x\}.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    Solve x2+3011xx^2 + 30 \le 11x.
  2. 2.
    First step for 'max of ff on S={x:quadratic0}S = \{x: \text{quadratic} \le 0\}'?
  3. 3.
    Max of 3x318x2+27x403x^3 - 18x^2 + 27x - 40 on [5,6][5,6]?
  4. 4.
    If no critical point lies inside, the extremum is at?

From the bank · past-year question

Example 5Applications of DerivativeHARD
The maximum value of the function f(x)=3x318x2+27x40f(x) = 3x^3 - 18x^2 + 27x - 40 on the set S={xR:x2+3011x}S = \{x \in \mathbb{R} : x^2 + 30 \leq 11x\} is

[Q115 · 9th May Shift 2 · 2024]

SOLVE the inequality first — S is not all of R\mathbb{R}

The constraint x2+3011xx^2 + 30 \le 11x restricts xx to a short interval [5,6][5, 6]. Optimising over all reals (finding f=0f' = 0 globally) gives the wrong answer — the global critical points x=1,3x = 1, 3 are not even in the set. Always convert the inequality into the interval before doing anything else.

On a closed interval, always compare the ENDPOINTS

If ff is monotonic on the interval (no interior critical point), the extreme value sits at an endpoint. Even when there IS an interior critical point, you must still evaluate ff at both endpoints and pick the winner — the endpoint value often beats the turning-point value.

Concept 6 of 9

Applied Optimisation — Geometry & the AM-GM Shortcut

Intuition

Word problems all follow one recipe: write the quantity to optimise, use the constraint to reduce it to ONE variable, then set the derivative to zero. But a huge share of them — minimise a sum, maximise a product — collapse to a single AM-GM line with no calculus at all. Learn to spot both.

Definition

The recipe: (1) express the target QQ and the constraint; (2) eliminate a variable so Q=Q(t)Q = Q(t); (3) solve Q(t)=0Q'(t) = 0; (4) confirm max/min. The AM-GM shortcut: for positive terms, AM \ge GM with equality when the terms are equal. So a sum with fixed product is minimised, and a product with fixed sum is maximised, when the terms are equal:

ax+by  2axby=2abxy.ax + by \ \ge\ 2\sqrt{ax \cdot by} = 2\sqrt{ab\,xy}.
In particular, min(ax+by)\min(ax + by) subject to xy=c2xy = c^2 is 2cab2c\sqrt{ab}, attained when ax=byax = by. Standard geometric results worth quoting: a fixed-perimeter rectangle is largest as a square; a triangle with two equal fenced sides xx has max area 12x2\tfrac{1}{2}x^2 (at 9090^\circ); a circular sector of fixed perimeter maximises area at a specific radius; splitting a number to maximise a product-of-powers uses the ratio of the exponents.

AM-GM optimisation shortcut

min(ax+by) s.t. xy=c2 = 2cab(equality at ax=by)\min(ax + by)\ \text{s.t.}\ xy = c^2 \ =\ 2c\sqrt{ab} \quad (\text{equality at } ax = by)

Worked example

Find the minimum value of ax+byax + by where xy=c2xy = c^2 (all positive).
  1. By AM-GM: ax+by2(ax)(by)=2abxyax + by \ge 2\sqrt{(ax)(by)} = 2\sqrt{ab \cdot xy}.
  2. Substitute the constraint xy=c2xy = c^2: =2abc2=2cab= 2\sqrt{ab \cdot c^2} = 2c\sqrt{ab}.
  3. Equality (the minimum) holds when ax=byax = by.
Answer:Minimum =2cab= 2c\sqrt{ab}.
Practice this conceptself-check · 4 quick reps

Try it yourself

20 is split into two parts so that (cube of one part) × (square of the other) is maximum. Find the parts.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    min(ax+by)\min(ax + by) with xy=c2xy = c^2?
  2. 2.
    x+2y=8x + 2y = 8: maximum of xyxy?
  3. 3.
    Sum of two numbers is 3; max of (first)×(second)²?
  4. 4.
    Triangular park, two fenced sides xx: max area?

From the bank · past-year question

Example 6Applications of DerivativeMODERATE
The minimum value of ax+byax+by where xy=c2xy=c^{2} is

[Q108 · 26 April Shift II · 2025]

AM-GM only maximises a PRODUCT (fixed sum) or minimises a SUM (fixed product)

The shortcut applies to a sum-with-fixed-product (minimise) or a product-with-fixed-sum (maximise), with all terms POSITIVE. It gives 2cab2c\sqrt{ab} for min(ax+by)\min(ax + by) — not 2abc2ab\sqrt{c} or 2cab-2c\sqrt{ab}. Match the constraint shape before quoting the result.

Number-splitting: split in the ratio of the EXPONENTS

To maximise xm(kx)nx^m(k - x)^n, the maximiser is x=mm+nkx = \dfrac{m}{m+n}\,k. For 'cube of one × square of the other' of 20: ratio 3:23 : 2 gives 1212 and 88. Guessing 10,1010, 10 (equal split) is wrong unless the exponents are equal.

Concept 7 of 9

Applied Optimisation — Tanks, Boxes & Cost

Intuition

Mensuration problems fix a volume and ask for the cheapest or least-material design. Write the surface area (or cost) in terms of the volume constraint, reduce to one variable, and minimise. The classic result: an open square-based tank of given volume uses least metal when the side is twice the height.

Definition

For an open tank with a square base of side xx and height hh, volume V=x2hV = x^2 h:

  • Surface area (base + 4 sides, no top) A=x2+4xhA = x^2 + 4xh.
  • Eliminate h=Vx2h = \dfrac{V}{x^2}: A(x)=x2+4VxA(x) = x^2 + \dfrac{4V}{x}.
  • A(x)=2x4Vx2=0x3=2Vx=2hA'(x) = 2x - \dfrac{4V}{x^2} = 0 \Rightarrow x^3 = 2V \Rightarrow x = 2h (the optimal side is twice the height).

For a cost version, weight each face by its unit cost before minimising. Always confirm with A>0A'' > 0 that it is a minimum.

Open square-based tank, least surface

A(x)=x2+4Vx,A(x)=0x3=2V,  x=2hA(x) = x^2 + \dfrac{4V}{x}, \qquad A'(x) = 0 \Rightarrow x^3 = 2V,\ \ x = 2h
  • xside of the square base
  • hheight; at the optimum x = 2h

Worked example

An open box with a square base of side xx is to hold 20002000 cm³. Find the side that minimises the material used.
  1. Volume: x2h=2000h=2000x2x^2 h = 2000 \Rightarrow h = \dfrac{2000}{x^2}.
  2. Open box surface: A=x2+4xh=x2+8000xA = x^2 + 4xh = x^2 + \dfrac{8000}{x}.
  3. A(x)=2x8000x2=0x3=4000x=4000315.87A'(x) = 2x - \dfrac{8000}{x^2} = 0 \Rightarrow x^3 = 4000 \Rightarrow x = \sqrt[3]{4000} \approx 15.87 cm.
  4. A(x)=2+16000x3>0A''(x) = 2 + \dfrac{16000}{x^3} > 0, confirming a minimum.
Answer:Side x=40003x = \sqrt[3]{4000} cm (about 15.8715.87 cm).
Practice this conceptself-check · 4 quick reps

Try it yourself

An open metallic tank with a square base and vertical sides has volume 500500 m³. Find the dimensions using least metal.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    Open square tank, volume VV: optimal side in terms of height?
  2. 2.
    Open tank 40004000 cm³, min surface: side?
  3. 3.
    Which face does an OPEN tank omit?
  4. 4.
    How to confirm a minimum after A=0A' = 0?

From the bank · past-year question

Example 7Applications of DerivativeMODERATE
An open tank with a square bottom is to contain 4000 cubic cm. of liquid. The dimensions of the tank so that the surface area of the tank is minimum, is

[Q140 · 22 April Shift II · 2025]

OPEN tank has no top — count the faces carefully

An open square-based tank has surface area x2+4xhx^2 + 4xh (one base + four sides), NOT 2x2+4xh2x^2 + 4xh. Including a non-existent top changes the optimum. For a cost problem, weight only the faces that actually exist.

Eliminate the second variable via the volume constraint FIRST

You cannot differentiate A=x2+4xhA = x^2 + 4xh directly — it has two variables. Use V=x2hV = x^2 h to write hh in terms of xx, reducing AA to one variable before setting A(x)=0A'(x) = 0.

Concept 8 of 9

Applied Optimisation — Profit, Revenue & Cost

Intuition

Economics problems are optimisation in disguise: profit is revenue minus cost, both functions of the number of items xx. Build the profit function P(x)P(x), differentiate, set P(x)=0P'(x) = 0 for the production level that maximises profit, then evaluate PP there.

Definition

Profit P(x)=R(x)C(x)P(x) = R(x) - C(x), where R(x)=(price per item)×xR(x) = (\text{price per item}) \times x is revenue and C(x)C(x) is total cost.

  • If the price per item is p(x)p(x), then R(x)=xp(x)R(x) = x\,p(x).
  • Maximise: solve P(x)=0P'(x) = 0 (marginal revenue = marginal cost) and check P(x)<0P''(x) < 0.
  • The final answer is the profit VALUE P(x)P(x^*) at the optimal xx^*, unless the number of items itself is asked.

Profit maximisation

P(x)=R(x)C(x),P(x)=0,  P(x)<0P(x) = R(x) - C(x), \qquad P'(x) = 0,\ \ P''(x) < 0

Worked example

A firm sells xx units at a price of (50x)(50 - x) rupees each, and the cost of producing xx units is (20x+100)(20x + 100) rupees. Find the maximum profit.
  1. Revenue R(x)=x(50x)=50xx2R(x) = x(50 - x) = 50x - x^2.
  2. Profit P(x)=RC=50xx2(20x+100)=x2+30x100P(x) = R - C = 50x - x^2 - (20x + 100) = -x^2 + 30x - 100.
  3. P(x)=2x+30=0x=15P'(x) = -2x + 30 = 0 \Rightarrow x = 15; P=2<0P'' = -2 < 0 (maximum).
  4. P(15)=225+450100=125P(15) = -225 + 450 - 100 = 125.
Answer:Maximum profit =125= ₹125 (at x=15x = 15 units).
Practice this conceptself-check · 4 quick reps

Try it yourself

A manufacturer's cost for xx items is x2+78x+2500x^2 + 78x + 2500, and the price satisfies 8x=600p8x = 600 - p. Find the maximum profit.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    Profit PP in terms of RR and CC?
  2. 2.
    Revenue if price per item is p(x)p(x)?
  3. 3.
    Condition for max profit at xx^*?
  4. 4.
    P(x)=9x2+522x2500P(x) = -9x^2 + 522x - 2500: profit-maximising xx?

From the bank · past-year question

Example 8Applications of DerivativeHARD
A manufacturer sells xx items at a price of rupees (6x40)\left( 6 -\frac{x}{40} \right) each. The cost price of xx items is ₹ (x5+193)\left( \frac{x}{5}+ 193 \right). The maximum profit in ₹ ____\_\_\_\_ is

[Q133 · 26 April Shift I · 2025]

Build REVENUE as price × quantity, not just price

Revenue from selling xx items at price pp each is xpx \cdot p, not pp. Forgetting the factor xx gives a linear profit with no interior maximum. Multiply the per-item price by the number of items before subtracting cost.

Return the profit VALUE, not the quantity

Solving P(x)=0P'(x) = 0 gives the optimal number of items xx^* — but the question usually asks for the maximum PROFIT. Substitute xx^* back into P(x)P(x) to get the rupee value.

Concept 9 of 9

Extrema of Trig and Rational Expressions

Intuition

Two special shapes appear so often they are worth memorising as formulas. For asecθbtanθa\sec\theta - b\tan\theta (with a>ba > b) the minimum is a2b2\sqrt{a^2 - b^2}. For a rational function x2x+1x2+x+1\dfrac{x^2 - x + 1}{x^2 + x + 1}, the extreme values come from setting the derivative to zero — and they are reciprocals about the value 1.

Definition

Trig minimum: for a>b>0a > b > 0, the minimum of asecθbtanθa\sec\theta - b\tan\theta on (0,π2)(0, \tfrac{\pi}{2}) is a2b2\sqrt{a^2 - b^2}, reached when sinθ=ba\sin\theta = \dfrac{b}{a}. **Harmonic (asinθ+bcosθa\sin\theta + b\cos\theta):** its extreme values are ±a2+b2\pm\sqrt{a^2 + b^2}. **Rational x2x+1x2+x+1\dfrac{x^2 - x + 1}{x^2 + x + 1}:** y=2(x21)(x2+x+1)2=0y' = \dfrac{2(x^2 - 1)}{(x^2 + x + 1)^2} = 0 at x=±1x = \pm 1; f(1)=3f(-1) = 3 (max), f(1)=13f(1) = \tfrac{1}{3} (min), so the range is [13,3]\big[\tfrac13, 3\big].

Key extremum formulas

min(asecθbtanθ)=a2b2 (a>b),max/min(asinθ+bcosθ)=±a2+b2\min(a\sec\theta - b\tan\theta) = \sqrt{a^2 - b^2}\ (a>b), \qquad \max/\min(a\sin\theta + b\cos\theta) = \pm\sqrt{a^2 + b^2}
  • a, bcoefficients; for the sec–tan form require a > b > 0

Worked example

For real xx, find the minimum value of 1x+x21+x+x2\dfrac{1 - x + x^2}{1 + x + x^2}.
  1. y=1x+x21+x+x2y = \dfrac{1 - x + x^2}{1 + x + x^2}; by the quotient rule y=2(x21)(1+x+x2)2=0x=±1y' = \dfrac{2(x^2 - 1)}{(1 + x + x^2)^2} = 0 \Rightarrow x = \pm 1.
  2. f(1)=13f(1) = \dfrac{1}{3}, f(1)=31=3f(-1) = \dfrac{3}{1} = 3.
  3. The smaller is 13\dfrac{1}{3}, so the minimum value is 13\dfrac{1}{3} (and the maximum is 33).
Answer:Minimum =13= \dfrac{1}{3}.
Practice this conceptself-check · 4 quick reps

Try it yourself

Find the minimum value of f(x)=sin4x+cos4xf(x) = \sin^4 x + \cos^4 x on 0<x<π20 < x < \tfrac{\pi}{2}.

Practice — Level 1 (4 reps)

Quick reps to lock in the method. Try each, then check.

  1. 1.
    min(asecθbtanθ)\min(a\sec\theta - b\tan\theta), a>ba > b?
  2. 2.
    Max of 5sinθ+12cosθ5\sin\theta + 12\cos\theta?
  3. 3.
    Min of 1x+x21+x+x2\dfrac{1 - x + x^2}{1 + x + x^2}?
  4. 4.
    Min of sin4x+cos4x\sin^4 x + \cos^4 x on (0,π2)(0, \tfrac{\pi}{2})?

From the bank · past-year question

Example 9Applications of DerivativeHARD
If a and b are positive numbers such that a>ba>b, then the minimum value of asecθbtanθa\sec\theta - b\tan\theta (0<θ<π2)\left(0<\theta<\frac{\pi}{2}\right) is

[Q113 · 11th May Shift 2 · 2024]

sec\sectan\tan minimum is a2b2\sqrt{a^2 - b^2}, not a2+b2\sqrt{a^2 + b^2}

The sec–tan form gives a2b2\sqrt{a^2 - b^2} (a difference under the root), whereas the harmonic form asinθ+bcosθa\sin\theta + b\cos\theta gives a2+b2\sqrt{a^2 + b^2} (a sum). Mixing the two is the classic error — check whether you have sec/tan\sec/\tan or sin/cos\sin/\cos.

For a symmetric rational, both x=±1x = \pm 1 matter

x2x+1x2+x+1\dfrac{x^2 - x + 1}{x^2 + x + 1} has critical points at BOTH x=1x = 1 and x=1x = -1, giving 13\tfrac13 (min) and 33 (max). Evaluating only one loses either the greatest or the least value — you need both for a 'difference' or 'range' question.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (9)

  • Critical Points — Where the Slope Vanishes

    Critical-point condition

    f(c)=0orf(c) does not existf'(c) = 0 \quad \text{or} \quad f'(c) \text{ does not exist}
  • The First-Derivative Test

    First-derivative test

    f:+  max,f:+  minf' : + \to - \ \Rightarrow\ \text{max}, \qquad f' : - \to + \ \Rightarrow\ \text{min}
  • The Second-Derivative Test

    Second-derivative test

    f(c)<0local max,f(c)>0local minf''(c) < 0 \Rightarrow \text{local max}, \qquad f''(c) > 0 \Rightarrow \text{local min}
  • Extreme Value at a Given Point ⇒ Solve for Parameters

    Extremum condition at a given point

    f(p)=0for each stated extreme point pf'(p) = 0 \quad \text{for each stated extreme point } p
  • Absolute Max/Min on a Constrained Set S

    Absolute extremum on a closed interval

    max[a,b]f=max{f(a), f(b), f(ci)}\max_{[a,b]} f = \max\big\{ f(a),\ f(b),\ f(c_i) \big\}
  • Applied Optimisation — Geometry & the AM-GM Shortcut

    AM-GM optimisation shortcut

    min(ax+by) s.t. xy=c2 = 2cab(equality at ax=by)\min(ax + by)\ \text{s.t.}\ xy = c^2 \ =\ 2c\sqrt{ab} \quad (\text{equality at } ax = by)
  • Applied Optimisation — Tanks, Boxes & Cost

    Open square-based tank, least surface

    A(x)=x2+4Vx,A(x)=0x3=2V,  x=2hA(x) = x^2 + \dfrac{4V}{x}, \qquad A'(x) = 0 \Rightarrow x^3 = 2V,\ \ x = 2h
  • Applied Optimisation — Profit, Revenue & Cost

    Profit maximisation

    P(x)=R(x)C(x),P(x)=0,  P(x)<0P(x) = R(x) - C(x), \qquad P'(x) = 0,\ \ P''(x) < 0
  • Extrema of Trig and Rational Expressions

    Key extremum formulas

    min(asecθbtanθ)=a2b2 (a>b),max/min(asinθ+bcosθ)=±a2+b2\min(a\sec\theta - b\tan\theta) = \sqrt{a^2 - b^2}\ (a>b), \qquad \max/\min(a\sin\theta + b\cos\theta) = \pm\sqrt{a^2 + b^2}

Watch out for (17)

Mastery check — 5 interleaved questions

Try each one before clicking. Questions are interleaved across the concepts above, not grouped — interleaving sharpens transfer.

Example 1Applications of DerivativeEASY
The maximum value of logxx\frac{\log x}{x} is

[Q123 · 9th May Shift 1 · 2023]

Example 2Applications of DerivativeMODERATE
If x=1x = -1 and x=2x = 2 are extreme points of f(x)=αlogx+βx2+xf(x) = \alpha\log|x| + \beta x^2 + x, then

[Q150 · Shift 1 · 2023]

Example 3Applications of DerivativeMODERATE
The maximum value of the function f(x)=3x318x2+27x40f(x) = 3x^3 - 18x^2 + 27x - 40 on the set S={xR:x2+3011x}S = \{x\in\mathbb{R} : x^2+30 \leq 11x\} is

[Q129 · 2nd May Shift 2 · 2023]

Example 4Applications of DerivativeMODERATE
If sum of two numbers is 3, then the maximum value of the product of first number and square of the second number is

[Q142 · 4th May Shift 1 · 2023]

Example 5Applications of DerivativeMODERATE
Open metallic tank: square base, vertical sides, volume 500 m3^3. Dimensions for minimum metal area are

[Q114 · 10th May Shift 1 · 2024]

Drill every past-year question on this subtopic

42 questions from the bank — paginated, with cart and Word-export support.

Related notes