School12 min read

Calculus Questions with Solutions (Limits, Derivatives, Integrals)

By the QUFF Team

Calculus intimidates students because it looks like a new kind of mathematics. It is not - it is two operations (differentiate, integrate) applied to a small table of standard functions, plus three rules for combining them. Almost every question you will meet is a standard form, a chain-rule application, or a word problem that becomes a standard form once you write down what is changing with respect to what. This set works through those cases with full solutions.

A compass and pencil beside a stack of books with a graduation cap, an atom and a molecule model, representing mathematics practice

Limits

Always substitute the value first. If you get a finite number, that is the limit. Only an indeterminate form - most often 0/0 - requires any technique.

  • Standard limits worth memorising: lim(x→0) sinx/x = 1; lim(x→0) tanx/x = 1; lim(x→0) (1 − cosx)/x² = ½; lim(x→0) (eˣ − 1)/x = 1; lim(x→0) ln(1+x)/x = 1; lim(x→a) (xⁿ − aⁿ)/(x − a) = naⁿ⁻¹.

Evaluate lim(x→2) (x² − 4)/(x − 2).

4. Direct substitution gives 0/0, so factorise: (x−2)(x+2)/(x−2) = x + 2, which tends to 4. Cancelling is legitimate because x approaches 2 without ever equalling it.

Evaluate lim(x→0) sin3x/x.

3. Rewrite as 3 × (sin3x/3x); as x → 0, the bracket tends to 1 by the standard limit, leaving 3. In general lim(x→0) sin(kx)/x = k.

Evaluate lim(x→0) (√(1+x) − 1)/x.

½. Rationalise by multiplying by the conjugate: the numerator becomes (1 + x) − 1 = x, giving x/[x(√(1+x) + 1)] = 1/(√(1+x) + 1), which tends to 1/2.

Is f(x) = |x| differentiable at x = 0?

It is continuous there but not differentiable. The left-hand derivative is −1 and the right-hand derivative is +1, so no single tangent exists at the corner. Continuity does not imply differentiability, though differentiability does imply continuity.

Differentiation

  • The table: d/dx(xⁿ) = nxⁿ⁻¹; sinx → cosx; cosx → −sinx; tanx → sec²x; eˣ → eˣ; ln x → 1/x; aˣ → aˣ ln a.
  • Product rule: (uv)′ = u′v + uv′. Quotient rule: (u/v)′ = (u′v − uv′)/v². Chain rule: dy/dx = (dy/du)(du/dx).

Differentiate y = x² sin x.

dy/dx = 2x sin x + x² cos x, by the product rule with u = x² and v = sin x. Neither term may be dropped - forgetting one is the standard error here.

Differentiate y = (3x + 1)⁵.

dy/dx = 15(3x + 1)⁴. By the chain rule: differentiate the outer power to get 5(3x+1)⁴, then multiply by the derivative of the inside, 3. Omitting that inner derivative is the most common chain-rule mistake.

Differentiate y = ln(x² + 1).

dy/dx = 2x/(x² + 1). The derivative of ln u is u′/u, which is the chain rule applied to the logarithm.

Differentiate y = x/(x + 1).

dy/dx = 1/(x + 1)². By the quotient rule: [(1)(x+1) − (x)(1)]/(x+1)² = 1/(x+1)². Remember the order in the numerator - u′v minus uv′, not the reverse.

Find the slope of the tangent to y = x² at x = 3, and the equation of that tangent.

dy/dx = 2x = 6 at x = 3, where y = 9. The tangent is y − 9 = 6(x − 3), that is y = 6x − 9. The normal would have slope −1/6.

Maxima, minima and rates of change

Find the maximum value of f(x) = −x² + 4x + 1.

5, at x = 2. Set f′(x) = −2x + 4 = 0 to get x = 2; since f″(x) = −2 < 0 this is a maximum, and f(2) = −4 + 8 + 1 = 5. Always confirm the nature with the second derivative rather than assuming.

A balloon's radius increases at 2 cm/s. How fast is its volume increasing when r = 5 cm?

200π cm³/s. Differentiate V = (4/3)πr³ with respect to time: dV/dt = 4πr² (dr/dt) = 4π × 25 × 2. Related-rates problems are just the chain rule applied through time.

Divide 20 into two parts whose product is maximum.

10 and 10, giving 100. Let the parts be x and 20 − x, so P = 20x − x²; P′ = 20 − 2x = 0 gives x = 10, and P″ = −2 < 0 confirms a maximum. The two-equal-parts result generalises to any fixed sum.

For what values of x is f(x) = x³ − 3x increasing?

For x < −1 and x > 1. f′(x) = 3x² − 3 = 3(x−1)(x+1), which is positive outside [−1, 1]. The function decreases on (−1, 1), with a local maximum at x = −1 and a local minimum at x = 1.

Integration

  • Standard forms: ∫xⁿ dx = xⁿ⁺¹/(n+1) + C for n ≠ −1; ∫dx/x = ln|x| + C; ∫eˣ dx = eˣ + C; ∫sinx dx = −cosx + C; ∫cosx dx = sinx + C; ∫sec²x dx = tanx + C.
  • By parts: ∫u dv = uv − ∫v du, choosing u by the ILATE order (inverse, log, algebraic, trigonometric, exponential).

Evaluate ∫(2x + 3) dx.

x² + 3x + C. Integrate term by term. The constant of integration is not optional in an indefinite integral - omitting it loses a mark.

Evaluate ∫₀¹ x² dx.

1/3. The antiderivative is x³/3, and evaluating from 0 to 1 gives 1/3 − 0. Definite integrals need no constant, since it cancels between the limits.

Evaluate ∫ sin²x dx.

x/2 − (sin 2x)/4 + C. Use the identity sin²x = (1 − cos 2x)/2 first; integrating gives x/2 − (sin 2x)/4. Squared trigonometric functions almost always need a double-angle identity before integration.

Evaluate ∫ x eˣ dx.

x eˣ − eˣ + C = eˣ(x − 1) + C. Integrate by parts with u = x (algebraic, so it comes before exponential in ILATE) and dv = eˣ dx, giving x eˣ − ∫eˣ dx.

Evaluate ∫₀^(π/2) sin x dx.

1. The antiderivative is −cos x, and (−cos(π/2)) − (−cos 0) = 0 + 1 = 1. Watch the sign - the derivative of cos is negative sin, so the integral of sin carries a minus.

Find the area bounded by y = x, the x-axis, and the lines x = 0 and x = 2.

2 square units. Area = ∫₀² x dx = [x²/2]₀² = 2. Here the geometry confirms it: the region is a triangle of base 2 and height 2.

Where calculus marks are lost

  • Skipping the inner derivative in the chain rule - the single most common differentiation error.
  • Omitting the constant of integration in an indefinite integral.
  • Applying L'Hôpital's rule to a form that is not 0/0 or ∞/∞. Check the form before differentiating.
  • Assuming a stationary point is a maximum without testing the second derivative.
  • Forgetting that continuity does not imply differentiability - corners and cusps are continuous but have no tangent.
  • Integrating squared trigonometric functions directly instead of converting with a double-angle identity first.

The bottom line

Now go test yourself

Calculus becomes routine once you see its actual size: a table of standard derivatives, three combination rules, the same table read backwards for integration, and a handful of standard limits. Word problems - rates, maxima, areas - are not a separate topic; they are those tools applied after you have written down what varies with respect to what.

So drill the table until recall is instant, then work problems with the solutions covered. Timed maths quizzes on QUFF will show you quickly whether your chain rule and your constants of integration are as reliable as you think.

FAQs

Frequently asked questions

How do I know when to use L'Hôpital's rule?

Only when direct substitution gives 0/0 or ∞/∞. Substitute first: if you get a finite value, that is the limit. For other indeterminate forms, rewrite the expression before applying the rule.

What is the most common mistake in differentiation?

Forgetting the inner derivative in the chain rule. The derivative of (3x + 1)⁵ is 5(3x+1)⁴ × 3 = 15(3x+1)⁴, and dropping the factor of 3 is the standard error.

How do I find maxima and minima of a function?

Solve f′(x) = 0 for stationary points, then classify with the second derivative: f″ < 0 gives a maximum and f″ > 0 a minimum. Also check the endpoints when the domain is a closed interval.

Why do I need a constant of integration?

Because differentiation destroys constants, so infinitely many functions share the same derivative. The + C represents that whole family. In a definite integral it cancels between the limits, so it is omitted there.

How do I integrate sin²x or cos²x?

Convert with a double-angle identity first: sin²x = (1 − cos 2x)/2 and cos²x = (1 + cos 2x)/2. Attempting to integrate the square directly does not work.

Is every continuous function differentiable?

No. |x| is continuous at x = 0 but has no derivative there, because the left and right derivatives differ. Differentiability implies continuity, but not the other way round.

What does ILATE mean in integration by parts?

It is the preference order for choosing u: inverse trigonometric, logarithmic, algebraic, trigonometric, exponential. Picking u from earlier in that list usually makes the remaining integral simpler.

Where can I practise calculus questions for free?

QUFF's free adaptive maths quizzes include calculus questions with no sign-up and explain every answer, which helps you check whether the error was in the method or in the arithmetic.

Related quizzes

Put it into practice

Keep reading

Related articles

Browse all articles →

Test yourself in two minutes

Six adaptive questions, every answer explained by an AI tutor. Free.

▶ Start an AI quiz