Lecture 4: Mastering Basic Differentiation Rules – Power Rule, Sum Rule, and Elementary Functions

Lecture 4: Mastering Basic Differentiation Rules - Power Rule, Sum Rule, and Elementary Functions

DaysHoursMinSec
This offer has expired!

Learning Objectives:

By the end of this lecture, students will be able to:

  1. Apply the power rule to differentiate functions with positive, negative, and fractional exponents efficiently
  2. Use constant and constant multiple rules to simplify the differentiation of scaled functions and constants
  3. Implement sum and difference rules to differentiate complex polynomial expressions term by term
  4. Calculate derivatives of elementary functions including trigonometric (sin, cos, tan), exponential (eˣ, aˣ), and logarithmic (ln x, log_a x) functions
  5. Find higher-order derivatives and interpret second derivatives in physical contexts such as acceleration
  6. Combine multiple differentiation rules to solve complex problems involving mixed function types
  7. Apply differentiation rules to real-world applications

Lecture 4 Outline:

  1. The Power Rule
    • Formal derivation and mathematical proof
    • Applications to integer exponents
    • Extensions to rational and negative exponents
  2. Constant and Constant Multiple Rules
    • Mathematical foundations and proofs
    • Practical applications in problem solving
  3. Sum and Difference Rules
    • Understanding linearity in differentiation
    • Step-by-step polynomial differentiation
  4. Elementary Function Derivatives
    • Trigonometric functions: derivatives of sin(x), cos(x), tan(x)
    • Exponential functions: eˣ and general base aˣ
    • Logarithmic functions: natural log and general logarithms
  5. Higher-Order Derivatives
    • Computing second, third, and nth derivatives
    • Physical meanings: velocity, acceleration, and beyond
  6. Integrated Problem Solving
    • Complex polynomial examples
    • Mixed trigonometric and algebraic functions
    • Real-world application problems

Introduction

Differentiation forms the foundation of calculus and serves as an essential tool for engineering students. This comprehensive guide covers the fundamental differentiation rules that every engineering student must master. We’ll explore the Power Rule, Sum Rule, and derivatives of elementary functions through detailed explanations and 50 practical examples.

After establishing the fundamental concept of derivatives through limits and geometric interpretation in Lecture 3: The Derivative – Definition and Interpretation, we now turn our attention to the practical tools that make calculus efficient and powerful. While computing derivatives using the limit definition provides essential understanding, it becomes cumbersome for complex functions.

This lecture introduces the basic differentiation rules that form the backbone of calculus problem-solving. These rules transform what could be lengthy limit calculations into straightforward algebraic operations. The power rule alone will revolutionize how you approach polynomial functions, while the sum and difference rules extend this efficiency to complex expressions.

We’ll also explore the derivatives of elementary functions that appear throughout mathematics and science—trigonometric functions that model periodic phenomena, exponential functions that describe growth and decay, and logarithmic functions that appear in everything from earthquake measurements to sound intensity.

By mastering these fundamental rules, you’ll possess the essential toolkit needed for virtually any differentiation problem encountered in calculus and its applications. The techniques covered here serve as building blocks for more advanced concepts like the product rule, quotient rule, and chain rule that follow in subsequent lectures.

Understanding these basic differentiation rules enables you to solve complex engineering problems involving rates of change, optimization, and motion analysis. Whether you’re studying electronics, electrical, mechanical, civil, computer or any other engineering discipline, these concepts will appear throughout your academic and professional career.

1. The Power Rule

1.1 Mathematical Foundation

The Power Rule states that for any function f(x) = x^n, where n is any real number, the derivative is:

f'(x) = nx^(n-1)

In simple terms: bring the exponent down as a coefficient, and then reduce the original exponent by one.

Derivation and Proof Using Limit Definition

The power rule can be proven using the fundamental limit definition of a derivative. For f(x) = x^n where n is a positive integer:

Step 1: Apply the limit definition

f'(x) = lim[h→0] [f(x+h) – f(x)]/h

f'(x) = lim[h→0] [(x+h)^n – x^n]/h

Step 2: Expand using the binomial theorem

(x+h)^n = x^n + nx^(n-1)h + [n(n-1)/2!]x^(n-2)h² + … + h^n

Step 3: Substitute and simplify

f'(x) = lim[h→0] [x^n + nx^(n-1)h + [n(n-1)/2!]x^(n-2)h² + … + h^n – x^n]/h

f'(x) = lim[h→0] [nx^(n-1)h + [n(n-1)/2!]x^(n-2)h² + … + h^n]/h

Step 4: Factor out h and evaluate the limit

f'(x) = lim[h→0] [nx^(n-1) + [n(n-1)/2!]x^(n-2)h + … + h^(n-1)]

f'(x) = nx^(n-1)

As h approaches zero, all terms containing h vanish, leaving only nx^(n-1).

1.2 Applications

The Power Rule applies to:

  • Integer exponents (positive and negative)
  • Rational exponents (fractional powers)
  • Zero exponent (constants)

Key Points for Engineering Students

  • Always reduce the exponent by 1
  • Multiply by the original exponent
  • Works for any real number exponent
  • Foundation for more complex differentiation rules

2. Constant and Constant Multiple Rules

2.1 Constant Rule

The derivative of any constant is zero. This fundamental rule reflects that constants don’t change.

Mathematical Statement:

If f(x) = c (where c is constant), then f'(x) = 0

Mathematical Justification: Think about the graph of f(x) = c. It’s a horizontal line. A horizontal line has a slope of zero. Since the derivative represents the slope of the tangent line, the derivative of a constant function is always zero. This makes perfect sense: a constant value isn’t changing, so its rate of change is zero.

Physical Interpretation:

Constants represent quantities that don’t change with respect to the variable. Since derivatives measure rates of change, the derivative of something that doesn’t change must be zero.

Proof of Constant Rule

Using the limit definition:

f'(x) = lim[h→0] [f(x+h) – f(x)]/h

f'(x) = lim[h→0] [c – c]/h = lim[h→0] 0/h = 0

Since the function value never changes, the rate of change is zero.

2.2 Constant Multiple Rule

The derivative of a constant times a function equals the constant times the derivative of the function:

The Rule: If f(x) = c·g(x), then f'(x) = c·g'(x)

Practical Applications: This rule allows us to “pull out” constants before differentiating. It simplifies expressions greatly.

Proof of Constant Multiple Rule

f'(x) = lim[h→0] [c·g(x+h) – c·g(x)]/h

f'(x) = lim[h→0] c[g(x+h) – g(x)]/h

f'(x) = c·lim[h→0] [g(x+h) – g(x)]/h = c·g'(x)

2.3 Engineering Applications

These rules are crucial when dealing with:

  • Physical constants in equations
  • Scaling factors in engineering formulas
  • Coefficient handling in differential equations

3. Sum and Difference Rules

Differentiation is a linear operation, meaning the derivative of a sum equals the sum of derivatives.

3.1 Mathematical Statement

Sum Rule: The derivative of a sum equals the sum of derivatives:

If f(x) = g(x) + h(x), then f'(x) = g'(x) + h'(x)

Difference Rule: The derivative of a difference equals the difference of derivatives:

If f(x) = g(x) – h(x), then f'(x) = g'(x) – h'(x)

Mathematical Proof

For the sum rule:

d/dx[f(x) + g(x)] = lim[h→0] [(f(x+h) + g(x+h)) – (f(x) + g(x))]/h

= lim[h→0] [f(x+h) – f(x)]/h + lim[h→0] [g(x+h) – g(x)]/h

= f'(x) + g'(x)

The proof for the difference rule follows similarly.

3.2 Linearity Property

This demonstrates that differentiation is a linear operation, making it possible to differentiate complex polynomials term by term.

Practical Applications

  • Polynomial differentiation
  • Complex function analysis
  • Engineering equation simplification

4. Elementary Function Derivatives

4.1 Trigonometric Functions

Trigonometric functions are frequently used in engineering, particularly in signal processing, vibration analysis, and AC circuit analysis.

Sine Function:

  • d/dx[sin(x)] = cos(x)
  • Physical meaning: The rate of change of sine is cosine.

Cosine Function:

  • d/dx[cos(x)] = -sin(x)
  • Note the negative sign – this reflects the phase relationship.

Tangent Function:

  • d/dx[tan(x)] = sec(x)
  • This derivative shows why the tangent has vertical asymptotes.

Cosecant Function:

  • d/dx[sec(x)] = sec(x)tan(x)

Secant Function:

  • d/dx[csc(x)] = -csc(x)cot(x)

Cotangent Function:

  • d/dx[cot(x)] = -csc^2(x)

Inverse Trigonometric Functions

  • d/dx[arcsin(x)] = 1/√(1-x^2)
  • d/dx[arccos(x)] = -1/√(1-x^2)
  • d/dx[arctan(x)] = 1/(1+x^2)

4.2 Exponential Functions

Exponential functions model growth and decay processes throughout engineering.

  • Natural Exponential:
    • d/dx[e^x] = e^x
    • Unique property: The function equals its own derivative.
  • General Exponential:
    • d/dx[a^x] = a^x · ln(a)
    • The natural log factor adjusts for different bases.

4.3 Logarithmic Functions

Logarithmic functions are the inverse of exponential functions and appear in many engineering contexts.

Natural Logarithm:

  • d/dx[ln(x)] = 1/x
  • Domain restriction: x must be positive.

General Logarithm:

  • d/dx[log_a(x)] = 1/(x·ln(a))
  • Change of base affects the derivative by a factor of 1/ln(a)

Engineering Relevance

These functions appear frequently in:

  • Signal processing (trigonometric functions)
  • Growth and decay models (exponential functions)
  • Scaling and measurement (logarithmic functions)

Strategy for Complex Problems

  1. Identify the structure of the function
  2. Apply the appropriate rule(s)
  3. Simplify the result
  4. Check your work by verifying special cases

5. Higher-Order Derivatives

5.1 Definition

Higher-order derivatives provide additional information about a function’s behavior and have specific physical interpretations. You might need to know how the rate of change itself is changing. 

Higher-order derivatives represent repeated differentiation:

  • f'(x) or f^(1)(x): First derivative
  • f”(x) or f^(2)(x): Second derivative
  • f”'(x) or f^(3)(x): Third derivative
  • f^(n)(x): nth derivative

5.2 Physical Interpretations

In engineering contexts:

  • First derivative: Rate of change (velocity)
  • Second derivative: Rate of rate of change (acceleration)
  • Third derivative: Jerk (rate of acceleration change)

Calculation Methods

Apply differentiation rules repeatedly to find higher-order derivatives.

Concavity and Curvature:

  • f”(x) > 0: Function is concave up (cup shape)
  • f”(x) < 0: Function is concave down (cap shape)
  • f”(x) = 0: Possible inflection point

5.3 Engineering Applications:

  • Beam deflection analysis uses fourth derivatives
  • Heat conduction equations involve second derivatives
  • Wave equations require second derivatives in both time and space

6. Common Patterns and Shortcuts

Recognizing Function Types

  • Polynomial: Use the power rule and sum rule
  • Exponential/Logarithmic: Memorize standard derivatives
  • Trigonometric: Know the six basic derivatives
  • Mixed: Break down and apply rules systematically

Verification Techniques

  • Check dimensions/units in applied problems
  • Verify that derivatives make intuitive sense
  • Use graphical reasoning when possible

7. Problem-Solving Examples

Example 1: Basic Power Rule Application

Find the derivative of f(x) = x³.

Technique Used: Direct application of the Power Rule

Step-by-Step Solution:

  1. Identify the function: f(x) = x³
  2. Apply Power Rule: f'(x) = 3x^(3-1)
  3. Simplify the exponent: f'(x) = 3x²

Answer: f'(x) = 3x²

Example 2: Constant Rule Application

Find the derivative of f(x) = 7.

Technique Used: Constant Rule

Step-by-Step Solution:

  1. Identify that 7 is a constant
  2. Apply Constant Rule: derivative of any constant is 0
  3. Therefore: f'(x) = 0

Answer: f'(x) = 0

Example 3: Constant Multiple Rule

Find the derivative of f(x) = 5x⁴.

Technique Used: Constant Multiple Rule combined with Power Rule

Step-by-Step Solution:

  1. Identify the constant multiple: 5
  2. Identify the function: x⁴
  3. Apply rules: f'(x) = 5 · d/dx[x⁴]
  4. Use Power Rule: d/dx[x⁴] = 4x³
  5. Multiply by constant: f'(x) = 5 · 4x³ = 20x³

Answer: f'(x) = 20x³

Example 4: Sum Rule with Polynomials

Find the derivative of f(x) = x³ + 2x² – 5x + 8.

Technique Used: Sum Rule with Power Rule and Constant Rule

Step-by-Step Solution:

  1. Apply the Sum Rule term by term
  2. d/dx[x³] = 3x²
  3. d/dx[2x²] = 2 · 2x = 4x
  4. d/dx[-5x] = -5 · 1 = -5
  5. d/dx[8] = 0
  6. Combine results: f'(x) = 3x² + 4x – 5

Answer: f'(x) = 3x² + 4x – 5

Example 5: Negative Exponent

Find the derivative of f(x) = x⁻².

Technique Used: Power Rule with negative exponents

Step-by-Step Solution:

  1. Identify the exponent: n = -2
  2. Apply Power Rule: f'(x) = (-2)x^(-2-1)
  3. Simplify: f'(x) = -2x⁻³
  4. Alternative form: f'(x) = -2/x³

Answer: f'(x) = -2x⁻³ or -2/x³

Example 6: Fractional Exponent

Find the derivative of f(x) = x^(1/2).

Technique Used: Power Rule with fractional exponents

Step-by-Step Solution:

  1. Identify the exponent: n = 1/2
  2. Apply Power Rule: f'(x) = (1/2)x^(1/2-1)
  3. Simplify exponent: 1/2 – 1 = -1/2
  4. Result: f'(x) = (1/2)x^(-1/2)
  5. Alternative form: f'(x) = 1/(2√x)

Answer: f'(x) = (1/2)x^(-1/2) or 1/(2√x)

Example 7: Sine Function Derivative

Find the derivative of f(x) = sin(x).

Technique Used: Standard trigonometric derivative

Step-by-Step Solution:

  1. Recognize this as a standard trigonometric function
  2. Apply the rule: d/dx[sin(x)] = cos(x)
  3. Therefore: f'(x) = cos(x)

Answer: f'(x) = cos(x)

Example 8: Cosine Function with Coefficient

Find the derivative of f(x) = 3cos(x).

Technique Used: Constant Multiple Rule with trigonometric derivative

Step-by-Step Solution:

  1. Identify constant multiple: 3
  2. Apply Constant Multiple Rule: f'(x) = 3 · d/dx[cos(x)]
  3. Use standard derivative: d/dx[cos(x)] = -sin(x)
  4. Multiply: f'(x) = 3(-sin(x)) = -3sin(x)

Answer: f'(x) = -3sin(x)

Example 9: Natural Exponential Function

Find the derivative of f(x) = e^x.

Technique Used: Standard exponential derivative

Step-by-Step Solution:

  1. Recognize this as the natural exponential function
  2. Apply the rule: d/dx[e^x] = e^x
  3. The derivative of e^x is itself

Answer: f'(x) = e^x

Example 10: Natural Logarithm

Find the derivative of f(x) = ln(x).

Technique Used: Standard logarithmic derivative

Step-by-Step Solution:

  1. Recognize this as the natural logarithm
  2. Apply the rule: d/dx[ln(x)] = 1/x
  3. Therefore: f'(x) = 1/x

Answer: f'(x) = 1/x

Example 11: Mixed Polynomial and Trigonometric

Find the derivative of f(x) = x² + sin(x).

Technique Used: Sum Rule combining Power Rule and trigonometric derivative

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[x²] + d/dx[sin(x)]
  2. Use Power Rule: d/dx[x²] = 2x
  3. Use trigonometric rule: d/dx[sin(x)] = cos(x)
  4. Combine: f'(x) = 2x + cos(x)

Answer: f'(x) = 2x + cos(x)

Example 12: Complex Polynomial

Find the derivative of f(x) = 4x⁵ – 3x³ + 2x – 7.

Technique Used: Sum Rule with multiple Power Rule applications

Step-by-Step Solution:

  1. Apply the Sum Rule term by term
  2. d/dx[4x⁵] = 4 · 5x⁴ = 20x⁴
  3. d/dx[-3x³] = -3 · 3x² = -9x²
  4. d/dx[2x] = 2 · 1 = 2
  5. d/dx[-7] = 0
  6. Combine: f'(x) = 20x⁴ – 9x² + 2

Answer: f'(x) = 20x⁴ – 9x² + 2

Example 13: Tangent Function

Find the derivative of f(x) = tan(x).

Technique Used: Standard trigonometric derivative

Step-by-Step Solution:

  1. Recognize this as the tangent function
  2. Apply the rule: d/dx[tan(x)] = sec²(x)
  3. Therefore: f'(x) = sec²(x)

Answer: f'(x) = sec²(x)

Example 14: General Exponential Function

Find the derivative of f(x) = 2^x.

Technique Used: General exponential derivative rule

Step-by-Step Solution:

  1. Identify base: a = 2
  2. Apply rule: d/dx[2^x] = 2^x · ln(2)
  3. Therefore: f'(x) = 2^x · ln(2)

Answer: f'(x) = 2^x · ln(2)

Example 15: Square Root Function

Find the derivative of f(x) = √x.

Technique Used: Power Rule with fractional exponent

Step-by-Step Solution:

  1. Rewrite: √x = x^(1/2)
  2. Apply Power Rule: f'(x) = (1/2)x^(1/2-1)
  3. Simplify: f'(x) = (1/2)x^(-1/2)
  4. Rewrite: f'(x) = 1/(2√x)

Answer: f'(x) = 1/(2√x)

Example 16: Reciprocal Function

Find the derivative of f(x) = 1/x.

Technique Used: Power Rule with negative exponent

Step-by-Step Solution:

  1. Rewrite: 1/x = x⁻¹
  2. Apply Power Rule: f'(x) = (-1)x^(-1-1)
  3. Simplify: f'(x) = -x⁻²
  4. Rewrite: f'(x) = -1/x²

Answer: f'(x) = -1/x²

Example 17: Second Derivative Calculation

Find the second derivative of f(x) = x⁴.

Technique Used: Repeated application of the Power Rule

Step-by-Step Solution:

  1. First derivative: f'(x) = 4x³
  2. Second derivative: f”(x) = d/dx[4x³]
  3. Apply Power Rule: f”(x) = 4 · 3x² = 12x²

Answer: f”(x) = 12x²

Example 18: Mixed Functions with Constants

Find the derivative of f(x) = 5e^x – 3ln(x) + 2.

Technique Used: Sum Rule with exponential and logarithmic derivatives

Step-by-Step Solution:

  1. Apply the Sum Rule term by term
  2. d/dx[5e^x] = 5e^x
  3. d/dx[-3ln(x)] = -3 · (1/x) = -3/x
  4. d/dx[2] = 0
  5. Combine: f'(x) = 5e^x – 3/x

Answer: f'(x) = 5e^x – 3/x

Example 19: Cubic Root Function

Find the derivative of f(x) = ∛x.

Technique Used: Power Rule with fractional exponent

Step-by-Step Solution:

  1. Rewrite: ∛x = x^(1/3)
  2. Apply Power Rule: f'(x) = (1/3)x^(1/3-1)
  3. Simplify: f'(x) = (1/3)x^(-2/3)
  4. Rewrite: f'(x) = 1/(3∛(x²))

Answer: f'(x) = 1/(3∛(x²))

Example 20: Polynomial with Fractional Coefficients

Find the derivative of f(x) = (1/2)x³ – (3/4)x² + (2/3)x.

Technique Used: Sum Rule with fractional constant multiples

Step-by-Step Solution:

  1. Apply the Sum Rule term by term
  2. d/dx[(1/2)x³] = (1/2) · 3x² = (3/2)x²
  3. d/dx[-(3/4)x²] = -(3/4) · 2x = -(3/2)x
  4. d/dx[(2/3)x] = 2/3
  5. Combine: f'(x) = (3/2)x² – (3/2)x + 2/3

Answer: f'(x) = (3/2)x² – (3/2)x + 2/3

Example 21: Trigonometric Sum

Find the derivative of f(x) = sin(x) + cos(x).

Technique Used: Sum Rule with trigonometric derivatives

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[sin(x)] + d/dx[cos(x)]
  2. Use standard derivatives: d/dx[sin(x)] = cos(x)
  3. d/dx[cos(x)] = -sin(x)
  4. Combine: f'(x) = cos(x) – sin(x)

Answer: f'(x) = cos(x) – sin(x)

Example 22: High Degree Polynomial

Find the derivative of f(x) = x⁶ – 2x⁵ + 3x⁴.

Technique Used: Sum Rule with multiple Power Rule applications

Step-by-Step Solution:

  1. Apply the Sum Rule term by term
  2. d/dx[x⁶] = 6x⁵
  3. d/dx[-2x⁵] = -2 · 5x⁴ = -10x⁴
  4. d/dx[3x⁴] = 3 · 4x³ = 12x³
  5. Combine: f'(x) = 6x⁵ – 10x⁴ + 12x³

Answer: f'(x) = 6x⁵ – 10x⁴ + 12x³

Example 23: Third Derivative

Find the third derivative of f(x) = x⁵.

Technique Used: Repeated application of Power Rule

Step-by-Step Solution:

  1. First derivative: f'(x) = 5x⁴
  2. Second derivative: f”(x) = 20x³
  3. Third derivative: f”'(x) = 60x²

Answer: f”'(x) = 60x²

Example 24: Exponential with Coefficient

Find the derivative of f(x) = 4e^x.

Technique Used: Constant Multiple Rule with exponential derivative

Step-by-Step Solution:

  1. Identify constant: 4
  2. Apply rule: f'(x) = 4 · d/dx[e^x]
  3. Use exponential derivative: d/dx[e^x] = e^x
  4. Result: f'(x) = 4e^x

Answer: f'(x) = 4e^x

Example 25: Logarithm with Coefficient

Find the derivative of f(x) = -2ln(x).

Technique Used: Constant Multiple Rule with logarithmic derivative

Step-by-Step Solution:

  1. Identify constant: -2
  2. Apply rule: f'(x) = -2 · d/dx[ln(x)]
  3. Use logarithmic derivative: d/dx[ln(x)] = 1/x
  4. Result: f'(x) = -2/x

Answer: f'(x) = -2/x

Example 26: Mixed Rational and Polynomial

Find the derivative of f(x) = x² + 1/x².

Technique Used: Sum Rule combining Power Rule applications

Step-by-Step Solution:

  1. Rewrite: f(x) = x² + x⁻²
  2. Apply Sum Rule: f'(x) = d/dx[x²] + d/dx[x⁻²]
  3. Use Power Rule: d/dx[x²] = 2x
  4. d/dx[x⁻²] = -2x⁻³ = -2/x³
  5. Combine: f'(x) = 2x – 2/x³

Answer: f'(x) = 2x – 2/x³

Example 27: Fourth Power with Constants

Find the derivative of f(x) = 3x⁴ – 8x + 5.

Technique Used: Sum Rule with Power and Constant Rules

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[3x⁴] = 3 · 4x³ = 12x³
  3. d/dx[-8x] = -8
  4. d/dx[5] = 0
  5. Combine: f'(x) = 12x³ – 8

Answer: f'(x) = 12x³ – 8

Example 28: Tangent with Coefficient

Find the derivative of f(x) = 6tan(x).

Technique Used: Constant Multiple Rule with trigonometric derivative

Step-by-Step Solution:

  1. Identify constant: 6
  2. Apply rule: f'(x) = 6 · d/dx[tan(x)]
  3. Use trigonometric derivative: d/dx[tan(x)] = sec²(x)
  4. Result: f'(x) = 6sec²(x)

Answer: f'(x) = 6sec²(x)

Example 29: General Base Logarithm

Find the derivative of f(x) = log₂(x).

Technique Used: General logarithmic derivative rule

Step-by-Step Solution:

  1. Identify base: a = 2
  2. Apply rule: d/dx[log₂(x)] = 1/(x·ln(2))
  3. Therefore: f'(x) = 1/(x·ln(2))

Answer: f'(x) = 1/(x·ln(2))

Example 30: Complex Mixed Function

Find the derivative of f(x) = x³ – 2sin(x) + e^x.

Technique Used: Sum Rule combining multiple derivative types

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[x³] = 3x²
  3. d/dx[-2sin(x)] = -2cos(x)
  4. d/dx[e^x] = e^x
  5. Combine: f'(x) = 3x² – 2cos(x) + e^x

Answer: f'(x) = 3x² – 2cos(x) + e^x

Example 31: Fifth Root Function

Find the derivative of f(x) = ⁵√x.

Technique Used: Power Rule with fractional exponent

Step-by-Step Solution:

  1. Rewrite: ⁵√x = x^(1/5)
  2. Apply Power Rule: f'(x) = (1/5)x^(1/5-1)
  3. Simplify: f'(x) = (1/5)x^(-4/5)
  4. Rewrite: f'(x) = 1/(5⁵√(x⁴))

Answer: f'(x) = 1/(5⁵√(x⁴))

Example 32: Negative Fractional Exponent

Find the derivative of f(x) = x^(-3/2).

Technique Used: Power Rule with negative fractional exponent

Step-by-Step Solution:

  1. Identify exponent: n = -3/2
  2. Apply Power Rule: f'(x) = (-3/2)x^(-3/2-1)
  3. Simplify: f'(x) = (-3/2)x^(-5/2)
  4. Rewrite: f'(x) = -3/(2x^(5/2))

Answer: f'(x) = -3/(2x^(5/2))

Example 33: Multiple Trigonometric Functions

Find the derivative of f(x) = 2sin(x) – 3cos(x) + tan(x).

Technique Used: Sum Rule with multiple trigonometric derivatives

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[2sin(x)] = 2cos(x)
  3. d/dx[-3cos(x)] = -3(-sin(x)) = 3sin(x)
  4. d/dx[tan(x)] = sec²(x)
  5. Combine: f'(x) = 2cos(x) + 3sin(x) + sec²(x)

Answer: f'(x) = 2cos(x) + 3sin(x) + sec²(x)

Example 34: Exponential Base 3

Find the derivative of f(x) = 3^x.

Technique Used: General exponential derivative rule

Step-by-Step Solution:

  1. Identify base: a = 3
  2. Apply rule: d/dx[3^x] = 3^x · ln(3)
  3. Therefore: f'(x) = 3^x · ln(3)

Answer: f'(x) = 3^x · ln(3)

Example 35: Fourth Derivative

Find the fourth derivative of f(x) = x⁶.

Technique Used: Repeated application of Power Rule

Step-by-Step Solution:

  1. First derivative: f'(x) = 6x⁵
  2. Second derivative: f”(x) = 30x⁴
  3. Third derivative: f”'(x) = 120x³
  4. Fourth derivative: f⁽⁴⁾(x) = 360x²

Answer: f⁽⁴⁾(x) = 360x²

Example 36: Mixed Exponential and Logarithm

Find the derivative of f(x) = e^x + ln(x) – x².

Technique Used: Sum Rule with exponential, logarithmic, and power derivatives

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[e^x] = e^x
  3. d/dx[ln(x)] = 1/x
  4. d/dx[-x²] = -2x
  5. Combine: f'(x) = e^x + 1/x – 2x

Answer: f'(x) = e^x + 1/x – 2x

Example 37: Sixth Degree Term

Find the derivative of f(x) = -5x⁶.

Technique Used: Constant Multiple Rule with Power Rule

Step-by-Step Solution:

  1. Identify constant: -5
  2. Apply rules: f'(x) = -5 · d/dx[x⁶]
  3. Use Power Rule: d/dx[x⁶] = 6x⁵
  4. Result: f'(x) = -5 · 6x⁵ = -30x⁵

Answer: f'(x) = -30x⁵

Example 38: Complex Rational Expression

Find the derivative of f(x) = 2/x³ – 3/x.

Technique Used: Sum Rule with negative exponent Power Rule

Step-by-Step Solution:

  1. Rewrite: f(x) = 2x⁻³ – 3x⁻¹
  2. Apply Sum Rule: f'(x) = d/dx[2x⁻³] + d/dx[-3x⁻¹]
  3. Use Power Rule: d/dx[2x⁻³] = 2(-3)x⁻⁴ = -6x⁻⁴
  4. d/dx[-3x⁻¹] = -3(-1)x⁻² = 3x⁻²
  5. Combine: f'(x) = -6x⁻⁴ + 3x⁻² = -6/x⁴ + 3/x²

Answer: f'(x) = -6/x⁴ + 3/x²

Example 39: Logarithm Base 10

Find the derivative of f(x) = log₁₀(x).

Technique Used: General logarithmic derivative rule

Step-by-Step Solution:

  1. Identify base: a = 10
  2. Apply rule: d/dx[log₁₀(x)] = 1/(x·ln(10))
  3. Therefore: f'(x) = 1/(x·ln(10))

Answer: f'(x) = 1/(x·ln(10))

Example 40: Mixed High-Order Terms

Find the derivative of f(x) = x⁷ – 4x⁵ + 2x³ – x.

Technique Used: Sum Rule with multiple Power Rule applications

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[x⁷] = 7x⁶
  3. d/dx[-4x⁵] = -4 · 5x⁴ = -20x⁴
  4. d/dx[2x³] = 2 · 3x² = 6x²
  5. d/dx[-x] = -1
  6. Combine: f'(x) = 7x⁶ – 20x⁴ + 6x² – 1

Answer: f'(x) = 7x⁶ – 20x⁴ + 6x² – 1

Example 41: Exponential Base e with Coefficient

Find the derivative of f(x) = -3e^x + 7.

Technique Used: Sum Rule with Constant Multiple and Constant Rules

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[-3e^x] + d/dx[7]
  2. Use Constant Multiple Rule: d/dx[-3e^x] = -3 · d/dx[e^x] = -3e^x
  3. Use Constant Rule: d/dx[7] = 0
  4. Combine: f'(x) = -3e^x

Answer: f'(x) = -3e^x

Example 42: Complex Fractional Powers

Find the derivative of f(x) = x^(2/3) + x^(3/4).

Technique Used: Sum Rule with fractional exponent Power Rule

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[x^(2/3)] + d/dx[x^(3/4)]
  2. Use Power Rule: d/dx[x^(2/3)] = (2/3)x^(2/3-1) = (2/3)x^(-1/3)
  3. d/dx[x^(3/4)] = (3/4)x^(3/4-1) = (3/4)x^(-1/4)
  4. Combine: f'(x) = (2/3)x^(-1/3) + (3/4)x^(-1/4)

Answer: f'(x) = (2/3)x^(-1/3) + (3/4)x^(-1/4)

Example 43: Second Derivative of Trigonometric

Find the second derivative of f(x) = sin(x).

Technique Used: Repeated application of trigonometric derivatives

Step-by-Step Solution:

  1. First derivative: f'(x) = cos(x)
  2. Second derivative: f”(x) = d/dx[cos(x)] = -sin(x)

Answer: f”(x) = -sin(x)

Example 44: Multiple Base Exponentials

Find the derivative of f(x) = 2^x + 5^x.

Technique Used: Sum Rule with general exponential derivatives

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[2^x] + d/dx[5^x]
  2. Use general exponential rule: d/dx[2^x] = 2^x · ln(2)
  3. d/dx[5^x] = 5^x · ln(5)
  4. Combine: f'(x) = 2^x · ln(2) + 5^x · ln(5)

Answer: f'(x) = 2^x · ln(2) + 5^x · ln(5)

Example 45: High-Order Derivative of Polynomial

Find the fifth derivative of f(x) = x⁸.

Technique Used: Repeated application of the Power Rule

Step-by-Step Solution:

  1. First derivative: f'(x) = 8x⁷
  2. Second derivative: f”(x) = 56x⁶
  3. Third derivative: f”'(x) = 336x⁵
  4. Fourth derivative: f⁽⁴⁾(x) = 1680x⁴
  5. Fifth derivative: f⁽⁵⁾(x) = 6720x³

Answer: f⁽⁵⁾(x) = 6720x³

Example 46: Mixed Logarithms

Find the derivative of f(x) = 3ln(x) – 2log₂(x).

Technique Used: Sum Rule with different logarithmic derivatives

Step-by-Step Solution:

  1. Apply Sum Rule: f'(x) = d/dx[3ln(x)] + d/dx[-2log₂(x)]
  2. Use Constant Multiple Rule: d/dx[3ln(x)] = 3 · (1/x) = 3/x
  3. d/dx[-2log₂(x)] = -2 · 1/(x·ln(2)) = -2/(x·ln(2))
  4. Combine: f'(x) = 3/x – 2/(x·ln(2))

Answer: f'(x) = 3/x – 2/(x·ln(2))

Example 47: Complex Trigonometric Expression

Find the derivative of f(x) = 4sin(x) – 2tan(x) + cos(x).

Technique Used: Sum Rule with multiple trigonometric derivatives

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[4sin(x)] = 4cos(x)
  3. d/dx[-2tan(x)] = -2sec²(x)
  4. d/dx[cos(x)] = -sin(x)
  5. Combine: f'(x) = 4cos(x) – 2sec²(x) – sin(x)

Answer: f'(x) = 4cos(x) – 2sec²(x) – sin(x)

Example 48: Rational Function with Multiple Terms

Find the derivative of f(x) = 1/x² + 2/x³ – 3/x.

Technique Used: Sum Rule with negative exponent Power Rule

Step-by-Step Solution:

  1. Rewrite: f(x) = x⁻² + 2x⁻³ – 3x⁻¹
  2. Apply Sum Rule: f'(x) = d/dx[x⁻²] + d/dx[2x⁻³] + d/dx[-3x⁻¹]
  3. Use Power Rule: d/dx[x⁻²] = -2x⁻³
  4. d/dx[2x⁻³] = 2(-3)x⁻⁴ = -6x⁻⁴
  5. d/dx[-3x⁻¹] = -3(-1)x⁻² = 3x⁻²
  6. Combine: f'(x) = -2x⁻³ – 6x⁻⁴ + 3x⁻²
  7. Rewrite: f'(x) = -2/x³ – 6/x⁴ + 3/x²

Answer: f'(x) = -2/x³ – 6/x⁴ + 3/x²

Example 49: Ultimate Mixed Function

Find the derivative of f(x) = 2x⁴ – 3sin(x) + e^x – ln(x) + 5.

Technique Used: Sum Rule combining all basic derivative types

Step-by-Step Solution:

  1. Apply Sum Rule term by term
  2. d/dx[2x⁴] = 2 · 4x³ = 8x³
  3. d/dx[-3sin(x)] = -3cos(x)
  4. d/dx[e^x] = e^x
  5. d/dx[-ln(x)] = -1/x
  6. d/dx[5] = 0
  7. Combine: f'(x) = 8x³ – 3cos(x) + e^x – 1/x

Answer: f'(x) = 8x³ – 3cos(x) + e^x – 1/x

Example 50: Finding a Tangent Line Slope

Let’s find the slope of the tangent line to f(x) = x² at the point (2, 4).

Technique Used: Limit definition of derivative using secant line approximation

Step-by-Step Solution:

  1. Set up two points: P(2, 4) and Q(2+h, (2+h)²)
  2. Calculate the secant line slope: [(2+h)² – 4]/h
  3. Expand (2+h)² = 4 + 4h + h²
  4. Simplify: (4 + 4h + h² – 4)/h = (4h + h²)/h = 4 + h
  5. Take the limit as h approaches 0: lim[h→0] (4 + h) = 4

Answer: The slope of the tangent line is 4.

Top

Key Techniques Summary

Power Rule Applications

  • Direct application for polynomial terms
  • Handling negative and fractional exponents
  • Converting roots and reciprocals to exponential form

Constant Rules

  • Recognizing when terms are constants
  • Applying the constant multiple rule correctly
  • Understanding that constants disappear in differentiation

Sum and Difference Rules

  • Breaking complex functions into manageable parts
  • Term-by-term differentiation
  • Maintaining proper signs throughout calculations

Elementary Function Derivatives

  • Memorizing standard trigonometric derivatives
  • Understanding exponential function properties
  • Applying logarithmic derivative rules

Higher-Order Derivatives

  • Systematic repeated differentiation
  • Recognizing patterns in higher derivatives
  • Understanding physical interpretations

Engineering Applications

Velocity and Acceleration

For position function s(t), velocity v(t) = s'(t) and acceleration a(t) = s”(t).

Rate Problems

Many engineering problems involve finding rates of change using differentiation.

Optimization

Finding maximum and minimum values requires setting derivatives equal to zero.

Signal Analysis

Trigonometric functions and their derivatives are essential in signal processing.

Growth and Decay

Exponential functions model population growth, radioactive decay, and circuit analysis.

Common Mistakes to Avoid

Power Rule Errors

  • Forgetting to reduce the exponent by 1
  • Incorrectly handling negative exponents
  • Mistakes with fractional exponents

Sign Errors

  • Losing track of negative signs in sums
  • Incorrect application of the difference rule
  • Sign mistakes in trigonometric derivatives

Constant Handling

  • Forgetting that constants have zero derivatives
  • Incorrectly applying the constant multiple rule
  • Confusing constants with variables

Function Type Recognition

  • Misidentifying function types
  • Using the wrong derivative formulas
  • Mixing up similar-looking functions

Practice Strategies

Building Proficiency

  1. Master basic rules before moving to complex problems
  2. Practice recognizing function types quickly
  3. Work systematically through each step
  4. Check answers by verifying derivative properties

Problem-Solving Approach

  1. Identify all function types present
  2. Break complex expressions into simpler parts
  3. Apply appropriate rules systematically
  4. Simplify final answers completely

Verification Methods

  1. Check dimensions and units in applied problems
  2. Verify special cases (like x = 0 or x = 1)
  3. Use graphing to confirm derivative behavior
  4. Compare with known derivative properties

Summary:

Basic differentiation rules are the essential building blocks for solving complex calculus problems in engineering.

Key takeaways from this lecture:

Power Rule Mastery: The formula f'(x) = nx^(n-1) works for all real exponents, making it the most versatile and frequently used differentiation rule in engineering calculations.

Linearity Properties: The Sum Rule and Constant Multiple Rule demonstrate that differentiation is a linear operation, allowing us to differentiate complex expressions term by term.

Elementary Function Recognition: Memorizing standard derivatives of trigonometric, exponential, and logarithmic functions enables quick problem solving and forms the foundation for more advanced techniques.

Systematic Approach: Breaking down complex functions into simpler components and applying rules systematically prevents errors and builds confidence in problem-solving.

Higher-Order Applications: Understanding that derivatives can be taken repeatedly connects mathematical concepts to physical interpretations like velocity, acceleration, and beyond.

Engineering Relevance: These rules appear constantly in real-world applications including circuit analysis, mechanical system design, optimization problems, and signal processing.

Topic FAQ

Q1: Which differentiation rule should I apply first when facing a complex function?

A: Always start by identifying the overall structure using the Sum Rule to break the function into individual terms. Then apply the appropriate rule (Power, trigonometric, exponential, or logarithmic) to each term separately.

Q2: Why does the Power Rule work for negative and fractional exponents?

A: The Power Rule derives from the limit definition of derivatives and the binomial theorem. The mathematical proof extends naturally to all real numbers, making x^(-2) and x^(1/2) follow the same pattern as x^2.

Q3: How do I handle functions like 1/x² or √x using basic rules?

A: Rewrite them using exponents: 1/x² = x^(-2) and √x = x^(1/2). Then apply the Power Rule normally. This conversion technique is essential for applying differentiation rules correctly.

Q4: When do I use each trigonometric derivative formula?

A: Memorize the basic three: d/dx[sin(x)] = cos(x), d/dx[cos(x)] = -sin(x), d/dx[tan(x)] = sec²(x). These appear frequently in engineering applications involving periodic phenomena and oscillations.

Q5: What’s the difference between e^x and other exponential functions?

A: The natural exponential e^x has the special property that its derivative equals itself: d/dx[e^x] = e^x. Other bases like 2^x require the additional factor ln(2): d/dx[2^x] = 2^x·ln(2).

Q6: How do I differentiate logarithmic functions with different bases?

A: For natural log: d/dx[ln(x)] = 1/x. For other bases: d/dx[log_a(x)] = 1/(x·ln(a)). The natural logarithm is simpler, which is why it’s preferred in calculus applications.

Q7: What does it mean when I get zero as a derivative?

A: A zero derivative indicates a horizontal tangent line at that point. In engineering applications, this often represents equilibrium points, maximum efficiency, or minimum cost conditions.

Q8: How many times can I differentiate a polynomial?

A: You can differentiate a polynomial until you reach a constant. For example, a 4th-degree polynomial becomes zero after the 5th derivative. This property is useful in analyzing polynomial behavior.

Q9: Why do constants disappear when differentiating?

A: Constants represent fixed values that don’t change. Since derivatives measure rates of change, a quantity that doesn’t change has a rate of change of zero.

Q10: How do basic differentiation rules connect to real engineering problems?

A: These rules help analyze rates of change in circuits (current vs. time), optimize designs (minimize cost or maximize efficiency), and understand dynamic systems (velocity and acceleration in mechanical systems).

Q11: What’s the most common mistake students make with these rules?

A: Forgetting to reduce the exponent by 1 in the Power Rule, or losing track of negative signs when applying the Sum Rule. Always double-check your arithmetic and sign handling.

Q12: How do I verify my derivative calculations?

A: Use specific values to check your work, graph both the original function and derivative to verify behavior, or differentiate simple test cases where you know the answer.

Q13: When should I memorize vs. derive these rules?

A: Memorize the basic forms for speed in problem-solving, but understand the derivations well enough to reconstruct them if needed. This builds both efficiency and deep understanding.

Q14: How do these basic rules prepare me for advanced calculus topics?

A: These rules are components of more complex techniques like the Chain Rule and Product Rule. Mastering basic differentiation ensures success with implicit differentiation, optimization, and differential equations.

Q15: What’s the best strategy for practicing these differentiation rules?

A: Start with single-rule problems, then progress to mixed functions. Practice regularly with varied examples, focus on speed and accuracy, and always connect the mathematics to practical engineering applications.

Conclusion:

Mastering basic differentiation rules forms the foundation for all advanced calculus applications in engineering. The Power Rule, Sum Rule, and elementary function derivatives provide the tools needed to solve complex engineering problems involving rates of change, optimization, and dynamic systems.

These 50 comprehensive examples demonstrate the systematic approach required for successful differentiation. By understanding the underlying principles and practicing regularly, engineering students develop the confidence and computational skills necessary for advanced calculus topics.

The techniques covered in this lecture handle functions that can be broken down into separate terms – polynomials, individual trigonometric functions, exponentials, and logarithms. However, engineering applications often involve more complex situations where functions are multiplied together or divided by one another.

Ready to Master Basic Differentiation Through Practice?

Theory becomes expertise through application. Test your understanding with our comprehensive collection of 50 Practice Problems: Power Rule, Sum Rule & Elementary Functions – featuring step-by-step solutions and progressive difficulty levels.

From fundamental power rule applications to complex elementary function combinations, these exercises will solidify your differentiation foundations and prepare you for advanced calculus topics.

Join 1,000+ engineering students who’ve already mastered basic differentiation with PinoyBIX practice sets!

“These power rule and sum rule problems built my confidence perfectly. The progression from simple to complex was exactly what I needed!” – Mark D., EE Student

⭐⭐⭐⭐⭐ 4.9/5 stars from 500+ engineering students

Building Toward Advanced Techniques

While these basic rules are powerful, they have limitations. Consider these challenging functions that require additional techniques:

  • f(x) = x² · sin(x) (product of polynomial and trigonometric)
  • f(x) = e^x · ln(x) (product of exponential and logarithmic)
  • f(x) = (x³ + 2x)/(cos(x)) (quotient of polynomial and trigonometric)
  • f(x) = tan(x)/x² (quotient of trigonometric and polynomial)

These expressions cannot be simplified using only the Sum Rule, Power Rule, and basic function derivatives. They require specialized techniques for handling products and quotients of functions.

🚀 Looking Ahead: Lecture 5 Preview

Our next lecture, “The Product and Quotient Rules” will extend your differentiation toolkit to handle these more complex scenarios. You’ll learn:

Product Rule Applications:

  • Differentiating products like x²·sin(x) and e^x·ln(x)
  • Understanding when to apply the Product Rule vs. other techniques
  • Solving engineering problems involving interacting variables

Quotient Rule Mastery:

  • Handling fractions where both the numerator and denominator are functions
  • Avoiding common algebraic mistakes in quotient differentiation
  • Applications in rate problems and optimization

Advanced Problem-Solving:

  • Combining Product and Quotient Rules with basic differentiation rules
  • Multi-step problems requiring strategic rule selection
  • Real-world engineering applications involving complex function relationships

Preparation for Success:

To maximize your learning in Lecture 5, ensure you can:

  • Apply the Power Rule automatically for any exponent
  • Differentiate trigonometric, exponential, and logarithmic functions instantly
  • Use the Sum Rule to break complex expressions into manageable parts
  • Recognize when a function requires Product or Quotient Rule treatment

The foundation you’ve built with basic differentiation rules will make the Product and Quotient Rules much more manageable. These advanced techniques follow the same logical principles – they simply extend the basic concepts to handle more sophisticated function combinations.

Remember that differentiation is a powerful computational tool that appears throughout all engineering disciplines. Whether analyzing circuit behavior, designing mechanical systems, optimizing manufacturing processes, or modeling dynamic systems, these fundamental and advanced rules provide your mathematical foundation. Practice consistently, understand the reasoning behind each step, and always verify your results to build lasting proficiency in calculus.

📌 SAVE this lecture for your next calculus study session!

💬 COMMENT below:

  • Which differentiation rule from today’s examples challenged you the most?
  • What engineering application of basic derivatives surprised you?
  • Which rule combination do you want to see more practice problems for?

🔔 FOLLOW for more: Essential calculus tutorials designed specifically for engineering students

📚 SHARE with: Your study group, classmates, or anyone mastering differentiation fundamentals

🎓 Study Tip of the Day:

“Master the basic rules first! Power Rule, Sum Rule, and elementary functions are your foundation – practice these until they’re automatic. Speed and accuracy with basic differentiation will make complex problems much more manageable!”

Remember: Every calculus expert once made sign errors with the Power Rule. Every engineering professional has once struggled to remember derivative formulas. Build your rule mastery strong, practice consistently, and those advanced differentiation techniques will flow naturally!

See you guys in Lecture 5: Advanced Differentiation Techniques! 📈

Top
Please do Subscribe on YouTube!

P inoyBIX educates thousands of reviewers and students a day in preparation for their board examinations. Also provides professionals with materials for their lectures and practice exams. Help me go forward with the same spirit.

“Will you subscribe today via YOUTUBE?”

Subscribe
What You Also Get: FREE ACCESS & DOWNLOAD via GDRIVE

TIRED OF ADS?

  • Become Premium Member and experienced complete ads-free content browsing.
  • Full Content Access to Premium Solutions Exclusive for Premium members
  • Access to PINOYBIX FREEBIES folder
  • Download Reviewers and Learning Materials Free
  • Download Content: You can see download/print button at the bottom of each post.

PINOYBIX FREEBIES FOR PREMIUM MEMBERSHIP:

  • CIVIL ENGINEERING REVIEWER
  • CIVIL SERVICE EXAM REVIEWER
  • CRIMINOLOGY REVIEWER
  • ELECTRONICS ENGINEERING REVIEWER (ECE/ECT)
  • ELECTRICAL ENGINEERING & RME REVIEWER
  • FIRE OFFICER EXAMINATION REVIEWER
  • LET REVIEWER
  • MASTER PLUMBER REVIEWER
  • MECHANICAL ENGINEERING REVIEWER
  • NAPOLCOM REVIEWER
  • Additional upload reviewers and learning materials are also FREE

FOR A LIMITED TIME

If you subscribe for PREMIUM today!

You will receive an additional 1 month of Premium Membership FREE.

For Bronze Membership an additional 2 months of Premium Membership FREE.

For Silver Membership an additional 3 months of Premium Membership FREE.

For Gold Membership an additional 5 months of Premium Membership FREE.

Join the PinoyBIX community.

DaysHoursMinSec
This offer has expired!

Add Comment

THE ULTIMATE ONLINE REVIEW HUB: PINOYBIX . © 2014-2026 All Rights Reserved | DMCA.com Protection Status