👁 Preview — Study, Practice and Revise are open; mock tests and the rest of the syllabus unlock on subscription. Unlock all · ₹4,999
← Back to Applied Mathematics
Study mode

Differential Calculus

Learning objective
Learn the principles of differential calculus and apply differentiation techniques to solve engineering problems.

Introduction to Differential Calculus

Differential calculus is a fundamental branch of mathematics that deals with how quantities change. At its core lies the concept of the derivative, which measures the rate at which a function changes with respect to its variable. This is especially important in mechanical engineering, where understanding how physical quantities like displacement, velocity, acceleration, and stress vary is crucial for design and analysis.

Before we can understand derivatives, we need to grasp the idea of limits, which provide the foundation for defining instantaneous rates of change. This chapter will guide you through the principles of limits, the formal definition of derivatives, the rules to differentiate various types of functions, and how to apply these concepts to solve practical engineering problems.

By mastering differential calculus, you will be equipped to tackle a variety of problems in the DRDO CEPTAM 11 exam and beyond, such as determining the slope of curves, optimizing mechanical components, and analyzing dynamic systems.

Limits

Imagine you are observing the speed of a car as it approaches a traffic signal. You want to know its exact speed at the moment it reaches the signal, but you only have speed measurements at times just before and just after that moment. The concept of a limit helps us find the value a function approaches as the input gets arbitrarily close to a certain point.

Formally, the limit of a function \( f(x) \) as \( x \) approaches a value \( a \) is the value that \( f(x) \) gets closer to as \( x \) gets closer to \( a \). We write this as:

\( \lim_{x \to a} f(x) = L \)

This means that as \( x \) moves nearer to \( a \) (from either side), \( f(x) \) approaches the number \( L \).

Limits can be approached from the left side (left-hand limit) or the right side (right-hand limit), denoted as:

  • Left-hand limit: \( \lim_{x \to a^-} f(x) \)
  • Right-hand limit: \( \lim_{x \to a^+} f(x) \)

For the limit to exist at \( a \), both one-sided limits must be equal.

x f(x) a L Approach from left Approach from right

Properties of Limits

  • Sum Rule: \( \lim_{x \to a} [f(x) + g(x)] = \lim_{x \to a} f(x) + \lim_{x \to a} g(x) \)
  • Product Rule: \( \lim_{x \to a} [f(x) \cdot g(x)] = \lim_{x \to a} f(x) \cdot \lim_{x \to a} g(x) \)
  • Quotient Rule: \( \lim_{x \to a} \frac{f(x)}{g(x)} = \frac{\lim_{x \to a} f(x)}{\lim_{x \to a} g(x)} \), provided \( \lim_{x \to a} g(x) eq 0 \)
  • Limits at Infinity: Describe the behavior of functions as \( x \to \infty \) or \( x \to -\infty \)

Limit Theorems and Techniques

Sometimes direct substitution in a limit leads to an indeterminate form like \( \frac{0}{0} \). In such cases, algebraic manipulation such as factoring, rationalizing, or using special limit theorems helps evaluate the limit.

Derivatives

The derivative of a function at a point measures how fast the function's value changes as its input changes. Geometrically, it is the slope of the tangent line to the curve at that point.

Consider a function \( f(x) \). The derivative at \( x \) is defined as the limit of the average rate of change over an interval as the interval shrinks to zero:

\[ f'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h} \]

This expression is called the difference quotient. The smaller the \( h \), the closer the average rate of change approximates the instantaneous rate.

P(x, f(x)) Δx Δy Tangent

Physically, if \( f(x) \) represents the displacement of a mechanical part at time \( x \), then \( f'(x) \) is its velocity at that instant.

Notation

  • \( f'(x) \) - read as "f prime of x"
  • \( \frac{dy}{dx} \) - Leibniz notation, representing the derivative of \( y \) with respect to \( x \)
  • \( D_x f(x) \) - operator notation

Derivative of Standard Functions

Some basic derivatives you should memorize include:

  • \( \frac{d}{dx} x^n = n x^{n-1} \) (Power Rule)
  • \( \frac{d}{dx} e^{kx} = k e^{kx} \)
  • \( \frac{d}{dx} \sin x = \cos x \), \( \frac{d}{dx} \cos x = -\sin x \) (angles in radians)

Higher Order Derivatives

The derivative of a derivative is called the second derivative, denoted \( f''(x) \) or \( \frac{d^2 y}{dx^2} \). It measures the rate of change of the rate of change - for example, acceleration if \( f(x) \) is displacement.

Rules of Differentiation

Real-world functions often involve combinations of simpler functions. To differentiate these, we use specific rules:

Rule Formula Example
Product Rule \( \frac{d}{dx}[u(x)v(x)] = u'(x)v(x) + u(x)v'(x) \) Differentiate \( x^2 \cdot \sin x \)
Quotient Rule \( \frac{d}{dx} \left[ \frac{u(x)}{v(x)} \right] = \frac{u'(x)v(x) - u(x)v'(x)}{[v(x)]^2} \) Differentiate \( \frac{x^3}{e^x} \)
Chain Rule \( \frac{d}{dx} f(g(x)) = f'(g(x)) \cdot g'(x) \) Differentiate \( (5x^2 + 3)^4 \)

Applications of Derivatives

Derivatives are powerful tools in engineering analysis. Some key applications include:

graph TD    A[Problem Statement] --> B[Identify function and variable]    B --> C[Find derivative]    C --> D{Type of problem?}    D -->|Rate of Change| E[Calculate instantaneous rate]    D -->|Tangent/Normal| F[Find slope and equation of line]    D -->|Maxima/Minima| G[Use first and second derivative tests]    E --> H[Interpret result in context]    F --> H    G --> H    H --> I[Solution]

Worked Examples

Example 1: Evaluating a Limit by Factorization Easy
Evaluate \( \lim_{x \to 2} \frac{x^2 - 4}{x - 2} \).

Step 1: Recognize direct substitution gives \( \frac{0}{0} \), an indeterminate form.

Step 2: Factor numerator: \( x^2 - 4 = (x - 2)(x + 2) \).

Step 3: Simplify the expression:

\( \frac{(x - 2)(x + 2)}{x - 2} = x + 2 \), for \( x eq 2 \).

Step 4: Now substitute \( x = 2 \):

\( 2 + 2 = 4 \).

Answer: The limit is 4.

Example 2: Differentiating a Polynomial Function Easy
Find \( \frac{d}{dx} (3x^4 - 5x^2 + 6) \).

Step 1: Apply power rule to each term:

\( \frac{d}{dx} 3x^4 = 3 \times 4 x^{4-1} = 12x^3 \)

\( \frac{d}{dx} (-5x^2) = -5 \times 2 x^{2-1} = -10x \)

\( \frac{d}{dx} 6 = 0 \) (constant term)

Step 2: Combine results:

\( \frac{d}{dx} (3x^4 - 5x^2 + 6) = 12x^3 - 10x \).

Answer: \( 12x^3 - 10x \).

Example 3: Using the Chain Rule Medium
Differentiate \( y = (5x^2 + 3)^4 \).

Step 1: Identify outer function \( f(u) = u^4 \) and inner function \( u = 5x^2 + 3 \).

Step 2: Differentiate outer function with respect to \( u \): \( f'(u) = 4u^3 \).

Step 3: Differentiate inner function with respect to \( x \): \( u' = 10x \).

Step 4: Apply chain rule:

\( \frac{dy}{dx} = f'(u) \cdot u' = 4(5x^2 + 3)^3 \times 10x = 40x (5x^2 + 3)^3 \).

Answer: \( \frac{dy}{dx} = 40x (5x^2 + 3)^3 \).

Example 4: Equation of Tangent Line Medium
Find the equation of the tangent line to \( y = x^3 - 2x + 1 \) at \( x = 1 \).

Step 1: Find derivative \( y' \):

\( y' = 3x^2 - 2 \).

Step 2: Calculate slope at \( x=1 \):

\( m = 3(1)^2 - 2 = 3 - 2 = 1 \).

Step 3: Find point coordinates:

\( y(1) = 1^3 - 2(1) + 1 = 1 - 2 + 1 = 0 \), so point is \( (1, 0) \).

Step 4: Use point-slope form of line:

\( y - y_1 = m(x - x_1) \Rightarrow y - 0 = 1(x - 1) \Rightarrow y = x - 1 \).

Answer: Equation of tangent line is \( y = x - 1 \).

Example 5: Maximizing Volume of a Cylinder Hard
Find the radius \( r \) that maximizes the volume of a cylinder with fixed surface area \( S = 1500 \, \text{cm}^2 \).

Step 1: Write formulas:

Surface area of cylinder: \( S = 2\pi r h + 2\pi r^2 \).

Volume of cylinder: \( V = \pi r^2 h \).

Step 2: Express height \( h \) in terms of \( r \) using surface area constraint:

\( 1500 = 2\pi r h + 2\pi r^2 \Rightarrow 2\pi r h = 1500 - 2\pi r^2 \Rightarrow h = \frac{1500 - 2\pi r^2}{2\pi r} \).

Step 3: Substitute \( h \) into volume formula:

\( V = \pi r^2 \times \frac{1500 - 2\pi r^2}{2\pi r} = \frac{r}{2} (1500 - 2\pi r^2) = 750 r - \pi r^3 \).

Step 4: Differentiate \( V \) with respect to \( r \):

\( \frac{dV}{dr} = 750 - 3\pi r^2 \).

Step 5: Set derivative to zero to find critical points:

\( 750 - 3\pi r^2 = 0 \Rightarrow 3\pi r^2 = 750 \Rightarrow r^2 = \frac{750}{3\pi} = \frac{250}{\pi} \).

Step 6: Calculate \( r \):

\( r = \sqrt{\frac{250}{\pi}} \approx \sqrt{79.58} \approx 8.92 \, \text{cm} \).

Step 7: Verify maximum using second derivative:

\( \frac{d^2 V}{dr^2} = -6 \pi r < 0 \) at \( r = 8.92 \), confirming a maximum.

Answer: The radius that maximizes volume is approximately \( 8.92 \, \text{cm} \).

Formula Bank

Limit Definition of Derivative
\[ f'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h} \]
where: \( f(x) \) is the function, \( h \) is an increment approaching zero
Power Rule
\[ \frac{d}{dx} x^n = n x^{n-1} \]
where: \( x \) is the variable, \( n \) is a real number exponent
Product Rule
\[ \frac{d}{dx}[u(x)v(x)] = u'(x)v(x) + u(x)v'(x) \]
where: \( u(x), v(x) \) are functions of \( x \)
Quotient Rule
\[ \frac{d}{dx} \left[ \frac{u(x)}{v(x)} \right] = \frac{u'(x)v(x) - u(x)v'(x)}{[v(x)]^2} \]
where: \( u(x), v(x) \) are functions of \( x \), \( v(x) eq 0 \)
Chain Rule
\[ \frac{d}{dx} f(g(x)) = f'(g(x)) \cdot g'(x) \]
where: \( f(g(x)) \) is a composite function, \( f', g' \) are derivatives
Derivative of Exponential Function
\[ \frac{d}{dx} e^{kx} = k e^{kx} \]
where: \( k \) is a constant, \( x \) is variable
Derivative of Trigonometric Functions
\[ \frac{d}{dx} \sin x = \cos x, \quad \frac{d}{dx} \cos x = -\sin x \]
where: \( x \) is in radians

Tips & Tricks

Tip: Memorize basic derivatives of standard functions first.

When to use: At the start of differentiation problems to save time.

Tip: Use factorization or rationalization to simplify limits before substitution.

When to use: When direct substitution in limits results in indeterminate forms like \( \frac{0}{0} \).

Tip: Apply the chain rule carefully by identifying inner and outer functions.

When to use: When differentiating composite functions such as \( (5x^2 + 3)^4 \).

Tip: Check units in engineering problems to verify correctness.

When to use: While solving applied problems involving rates or physical quantities like velocity or acceleration.

Tip: Use the first derivative test for quick maxima/minima identification.

When to use: In optimization problems to determine intervals of increase or decrease.

Common Mistakes to Avoid

❌ Ignoring the chain rule when differentiating composite functions.
✓ Always identify inner and outer functions and apply the chain rule accordingly.
Why: Students often treat composite functions as simple products or sums, leading to incorrect derivatives.
❌ Incorrectly simplifying limits by canceling terms before factoring.
✓ Factor expressions fully before canceling to avoid division by zero errors.
Why: Rushing leads to overlooking zero denominators or indeterminate forms.
❌ Forgetting to apply product or quotient rule when required.
✓ Recognize when functions are multiplied or divided and apply the respective rule.
Why: Students sometimes differentiate terms separately ignoring the product/quotient structure.
❌ Misinterpreting maxima/minima without checking second derivative or endpoints.
✓ Use second derivative test or analyze endpoints for absolute extrema.
Why: Relying solely on first derivative sign changes can be misleading.
❌ Mixing radians and degrees in trigonometric derivatives.
✓ Ensure angle measures are in radians before differentiating trig functions.
Why: Derivative formulas for trig functions assume radians, not degrees.
✨ AI exam tools — try them free (included in every plan)
Tip: select any text above to Explain / Example / Simplify it.
Curated videos per subtopic
Top YouTube explainers, AI-ranked for your exam and language. Unlocks with subscription.
Unlock

Try Practice next.

Progress tracking is paywalled — subscribe to mark subtopics as understood and save your streak.

Go to practice →
Ask a doubt
Differential Calculus · 10 free messages
Ask me anything about this subtopic. You have 10 free messages this session — chat history isn't saved in preview.