Method guideCalculus IIntermediate12 min read

A calculus optimization workflow that does not skip the model

Turn a word problem into one objective function, then use calculus and endpoint checks to justify the best feasible value.

f(x)=0f'(x)=0
Method guide

How to recognize the method, run it, and know when it is the wrong choice.

Reviewed July 11, 2026
WorkflowStart here

Identify the quantity to maximize or minimize, use constraints to write it in one variable, determine the feasible interval, then compare critical points and endpoints.

01

Objective versus constraint

The objective is the quantity being optimized: area, cost, distance, or time. Constraints describe what combinations are allowed. Mixing them produces an equation with too many variables and no clear target.

Use the constraint to eliminate variables from the objective before differentiating.

02

The feasible domain matters

Physical lengths cannot be negative, capacities may be bounded, and denominators may exclude values. The domain is part of the model and determines which critical points are candidates.

On a closed interval, endpoints must be compared with interior critical points.

03

Justify the optimum

A zero derivative identifies a stationary candidate, not automatically a maximum. Use sign changes, the second derivative, or direct value comparison to justify the conclusion.

State the requested quantity in context rather than ending with an unexplained variable value.

Worked exampleMaximum area with fixed perimeter

A rectangle has perimeter 40. Which dimensions maximize its area?

12x+2y=40y=20x2x+2y=40\Longrightarrow y=20-x

Use the perimeter constraint.

2A(x)=x(20x)=20xx2A(x)=x(20-x)=20x-x^2

Write area in one variable.

3A(x)=202x=0x=10A'(x)=20-2x=0\Longrightarrow x=10

Find the interior critical point.

Result10×10 square; maximum area 100\boxed{10\times10\text{ square; maximum area }100}
Watch for

Common mistakes

  1. Differentiating the constraint instead of the objective.
  2. Keeping two independent variables after a constraint is available.
  3. Ignoring endpoints or feasibility.
Keep

Three takeaways

  1. Name the objective explicitly.
  2. Reduce to one variable before differentiating.
  3. A critical point needs a maximum or minimum justification.