Study Guide947 words

Chapter Study Guide: Basics of Differential Equations

Basics of Differential Equations

Learning Objectives

  • Identify the order of a differential equation.
  • Explain what is meant by a solution to a differential equation.
  • Distinguish between the general solution and a particular solution.
  • Identify an initial-value problem (IVP).
  • Verify whether a given function is a solution to a differential equation or an initial-value problem.

Key Terms & Glossary

  • Differential Equation: An equation involving an unknown function and one or more of its derivatives.
  • Order: The highest order of any derivative of the unknown function that appears in the equation.
  • Solution: A function that satisfies the differential equation when it and its derivatives are substituted into the equation.
  • General Solution: A family of solutions containing an arbitrary constant (e.g., CC).
  • Particular Solution: A specific solution derived from the general solution by applying an initial condition.
  • Initial-Value Problem (IVP): A system consisting of a differential equation paired with an initial condition.

The "Big Idea"

Calculus is the mathematics of change, and rates of change are expressed by derivatives. In the real world, we rarely know the exact formula for a phenomenon (like the spread of a virus or the cooling of a cup of coffee), but we do know the rules governing how it changes. By setting up an equation that connects an unknown function to its derivative—a differential equation—we can work backward to find the original function. Solving these equations is the key to unlocking predictive mathematical models in physics, biology, economics, and engineering.

Formula / Concept Box

ConceptMathematical RepresentationDescription
First-Order DEy=f(x,y)y' = f(x, y)Involves only the first derivative.
Second-Order DEy+p(x)y+q(x)y=g(x)y'' + p(x)y' + q(x)y = g(x)Involves the second derivative (highest order is 2).
General Solutiony(x)=f(x)+Cy(x) = f(x) + CContains an unknown constant CC. Represents infinite parallel curves.
Initial Conditiony(x0)=y0y(x_0) = y_0A known data point the solution curve must pass through.
Initial-Value Problemy=f(x),y(x0)=y0y' = f(x), \quad y(x_0) = y_0The combination of a DE and an initial condition.

Hierarchical Outline

  • Basics of Differential Equations
    • General Differential Equations
      • Definition of a differential equation (equation with derivatives).
      • Concept of a solution (a function, not a single number).
    • Characteristics of Differential Equations
      • Determining the order (highest derivative present).
    • Types of Solutions
      • General Solution (includes an arbitrary constant CC).
      • Particular Solution (constant is solved for).
    • Initial-Value Problems (IVPs)
      • Combining a differential equation with an initial condition.
      • Using the initial condition to lock down a single, unique solution.

Visual Anchors

The Path to a Solution

Loading Diagram...

General vs. Particular Solutions

Compiling TikZ diagram…
Running TeX engine…
This may take a few seconds

[!NOTE] The dashed blue lines represent the General Solution (infinite possibilities). The solid red line represents the Particular Solution locked in by the Initial Condition point $(0, 1.5).

Definition-Example Pairs

TermConcrete DefinitionReal-World Example
Differential EquationAn equation equating a function to its rate of change.Newton's Law of Cooling: The rate at which coffee cools T' is proportional to the difference between its temp Tandtheroomtempand the room tempT_a$. T=k(TTa)T' = -k(T - T_a)
OrderThe highest level of derivative found in the equation.Acceleration is the second derivative of position, so Newton's Second Law (F=maF=ma) forms a 2nd-order DE: mx=Fm x'' = F
Initial ConditionA known state of the system at a specific time (usually $t=0).A bank account starting with $1,000atyearat yeart=0$ gives the initial condition A(0)=1000A(0) = 1000.

Worked Examples

Example 1: Verifying a General Solution

Problem: Verify that the function $y = e^{-3x} is a solution to the differential equation y' + 3y = 0.

Step-by-Step Breakdown:

  1. Find the necessary derivatives: The DE requires y'$. y=e3xy = e^{-3x} y=3e3xy' = -3e^{-3x} (Chain rule applied!)
  2. Substitute into the left side of the DE: y+3yy' + 3y (3e3x)+3(e3x)(-3e^{-3x}) + 3(e^{-3x})
  3. Simplify: 3e3x+3e3x=0-3e^{-3x} + 3e^{-3x} = 0
  4. Compare: The result matches the right side of the equation (0). Thus, it is a valid solution.

[!WARNING] Common Pitfall: Forgetting to apply the Chain Rule when taking derivatives of exponential functions during verification. Always double-check your inner derivatives!

Example 2: Verifying an Initial-Value Problem (IVP)

Problem: Verify that the function y=2e2t+ety = 2e^{-2t} + e^t is a solution to the initial-value problem: y+2y=3et,y(0)=3y' + 2y = 3e^t, \quad y(0) = 3

Step-by-Step Breakdown:

  1. Verify the Differential Equation: Calculate yy': y=4e2t+ety' = -4e^{-2t} + e^t Substitute yy and yy' into the left side of the DE: y+2y=(4e2t+et)+2(2e2t+et)y' + 2y = (-4e^{-2t} + e^t) + 2(2e^{-2t} + e^t) Simplify by distributing the 2: 4e2t+et+4e2t+2et-4e^{-2t} + e^t + 4e^{-2t} + 2e^t Combine like terms: (4+4)e2t+(1+2)et=3et(-4 + 4)e^{-2t} + (1 + 2)e^t = 3e^t This matches the right side! DE is verified.
  2. Verify the Initial Condition: Plug t=0intotheproposedsolutiony=2e2t+ett=0 into the proposed solution y = 2e^{-2t} + e^t: y(0)=2e2(0)+e0y(0) = 2e^{-2(0)} + e^0 y(0)=2(1)+1=3y(0) = 2(1) + 1 = 3 This matches the given initial condition $y(0) = 3. Both parts are satisfied!

Checkpoint Questions

1. What is the fundamental difference between a general solution and a particular solution?

A general solution represents a whole family of functions and includes an arbitrary constant (like + C). A particular solution is a single, specific function where the constant has been solved for using an initial condition.

2. What is the order of the differential equation: y''' - 4y' + y = \sin(x)?

The order is 3, because the highest derivative present in the equation is the third derivative (y'''$).

3. What two pieces of mathematical information are required to form an Initial-Value Problem (IVP)?

An IVP requires: (1) A differential equation, and (2) At least one initial condition (a known point the solution must pass through).

4. If a function evaluates correctly in the differential equation but fails the initial condition, is it a solution to the IVP?

No. To be a solution to an Initial-Value Problem, the function must satisfy both the differential equation AND the initial condition.

Muddy Points & Cross-Refs

  • Wait, what does "family of solutions" mean? Because the derivative of any constant is zero, an infinite number of functions can share the exact same derivative. Graphically, these look like parallel curves stacked on top of each other.
  • Looking Ahead: Later in this module, you will learn how to find these solutions from scratch using techniques like Separation of Variables instead of just verifying given answers.

Ready to study Calculus II: Integral Calculus - Integration, Series, and Parametric Equations?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free