Introduction to Differential Equations: Basic Terminology
Welcome, students π In this lesson, you will learn the basic language used in differential equations. Think of this as learning the vocabulary of a new subject before reading a book. Once you know the words, the ideas become much easier to understand.
What you will learn
By the end of this lesson, you should be able to:
- explain what a differential equation is,
- recognize common terms like order, solution, and initial condition,
- understand how differential equations describe real-world change,
- connect basic terminology to graphs, rates of change, and solution curves,
- use examples to identify whether an equation is a differential equation or an ordinary algebraic equation.
Differential equations are used in science, engineering, economics, medicine, and many other areas. They help describe things that change over time or across space, such as population growth, cooling coffee, the spread of disease, or the motion of a roller coaster π’.
What is a differential equation?
A differential equation is an equation that includes a derivative. A derivative represents a rate of change, so a differential equation is an equation that relates a function to one or more of its derivatives.
For example, the equation
$$\frac{dy}{dx}=3x$$
is a differential equation because it contains the derivative $\frac{dy}{dx}$.
Here, $y$ is the unknown function, and $x$ is the independent variable. The equation says that the slope of the graph of $y$ changes according to the value of $x$.
Compare that with an algebraic equation like
$$y=3x^2+1$$
This is not a differential equation because it does not contain any derivatives.
A good way to think about a differential equation is this: instead of directly telling you the value of the function, it tells you how the function behaves as it changes π.
Function, independent variable, and dependent variable
To understand differential equations, it helps to know the roles of the variables.
In a function like $y=f(x)$:
- $x$ is usually the independent variable. It is the input.
- $y$ is the dependent variable. It depends on the input.
For example, if $x$ represents time in hours and $y$ represents the amount of water in a tank, then $y$ changes as time passes. In that situation, the differential equation may describe how quickly the water is entering or leaving the tank.
A derivative like $\frac{dy}{dx}$ means the rate at which $y$ changes with respect to $x$. If $x$ is time, then $\frac{dy}{dx}$ is a rate of change over time. If $x$ is distance, then it could describe how a quantity changes as you move along a road or track.
Ordinary differential equation and partial differential equation
A differential equation can involve different kinds of derivatives.
An ordinary differential equation or ODE contains derivatives with respect to only one independent variable. For example,
$$\frac{dy}{dx}=x+y$$
is an ODE.
A partial differential equation or PDE involves partial derivatives with respect to more than one independent variable. For example,
$$\frac{\partial u}{\partial t}=k\frac{\partial^2 u}{\partial x^2}$$
is a PDE because it uses partial derivatives $\frac{\partial u}{\partial t}$ and $\frac{\partial^2 u}{\partial x^2}$.
In this course topic, the focus begins with basic terminology, especially ODE ideas. That is because many introductory models use one changing variable, such as time.
Order of a differential equation
The order of a differential equation is the order of the highest derivative that appears in the equation.
Examples:
- $\frac{dy}{dx}=x^2$ has order $1$ because the highest derivative is first order.
- $\frac{d^2y}{dx^2}+y=0$ has order $2$ because the highest derivative is second order.
- $\frac{d^3y}{dx^3}+\frac{dy}{dx}=7$ has order $3$ because the highest derivative is third order.
The order matters because higher-order differential equations often model more complicated situations. For example, position, velocity, and acceleration are connected by derivatives, and acceleration involves a second derivative of position.
Linear and nonlinear equations
A differential equation is linear if the unknown function and its derivatives appear only to the first power, are not multiplied together, and are not inside complicated functions like $\sin(y)$ or $e^y$.
Examples of linear equations:
- $$\frac{dy}{dx}+2y=x$$
- $$\frac{d^2y}{dx^2}-3\frac{dy}{dx}+y=0$$
Examples of nonlinear equations:
- $$\frac{dy}{dx}=y^2$$
- $$\frac{dy}{dx}+\sin(y)=x$$
- $$\left(\frac{dy}{dx}\right)^2+y=1$$
Why is this important? Linear equations often have solution methods that are more structured and easier to analyze. Nonlinear equations can behave in more complicated ways, such as having multiple equilibrium points or changing growth patterns.
What is a solution?
A solution of a differential equation is a function that makes the equation true when substituted into it.
For instance, consider
$$\frac{dy}{dx}=2x$$
A function that solves this equation is
$$y=x^2+C$$
for any constant $C$, because
$$\frac{d}{dx}(x^2+C)=2x$$
This means there are many solutions, not just one. The constant $C$ changes the particular curve, but each of these functions has the same derivative relationship.
A solution may be given in one of two forms:
- general solution, which includes arbitrary constants like $C$,
- particular solution, which is a specific solution found after extra information is given.
For example, $y=x^2+4$ is a particular solution of $\frac{dy}{dx}=2x$.
Initial conditions and initial value problems
An initial condition gives a specific starting value for the solution.
For example:
$$y(0)=3$$
means that when $x=0$, the function value is $3$.
A differential equation together with an initial condition is called an initial value problem.
Example:
$$\frac{dy}{dx}=2x, \quad y(0)=3$$
We already know the general solution is
$$y=x^2+C$$
Now use the initial condition:
$$3=(0)^2+C$$
So $C=3$, and the particular solution is
$$y=x^2+3$$
This is a key idea in differential equations. The differential equation describes the rule for change, and the initial condition picks out one exact solution from the family of possible solutions π.
Families of solutions and solution curves
A family of solutions is a group of solutions that all have the same basic form but different constants.
For example, the family
$$y=x^2+C$$
contains infinitely many curves, one for each value of $C$.
If you graph several members of this family, you get a set of solution curves. Each curve satisfies the same differential equation, but they are shifted up or down depending on the value of $C$.
This helps explain why differential equations often do not have just one answer. Instead, they describe many possible behaviors, and extra conditions are needed to select the one that fits the situation.
Real-world meaning of basic terminology
Here is how these terms connect to real life:
- A differential equation models change.
- The derivative tells the rate of change.
- The order tells how many layers of change are involved.
- A solution is a function that matches the rule.
- An initial condition gives a starting point.
- An initial value problem combines the rule and the starting point.
- A family of solutions shows all possible answers.
For example, if a hot drink cools over time, a differential equation can model how the temperature changes. The initial condition could be the drinkβs starting temperature, such as $T(0)=90$. That starting value helps determine the exact cooling curve, rather than just a general pattern.
Conclusion
students, basic terminology is the foundation of differential equations π§ . Once you understand what a differential equation is, what order means, how to identify a solution, and why initial conditions matter, you are ready for the next ideas in the course.
Differential equations are powerful because they describe change, not just static values. This is why they are useful for modeling motion, growth, decay, temperature, and many other processes. In the next topics, you will use these terms to study initial value problems, direction fields, and solution curves more deeply.
Study Notes
- A differential equation is an equation that includes a derivative.
- A derivative like $\frac{dy}{dx}$ represents a rate of change.
- An ordinary differential equation uses derivatives with respect to one independent variable.
- A partial differential equation uses partial derivatives with respect to more than one independent variable.
- The order of a differential equation is the highest derivative appearing in it.
- A linear differential equation has the unknown function and its derivatives only to the first power and not multiplied together.
- A nonlinear differential equation violates one or more of those linear conditions.
- A solution is a function that makes the differential equation true.
- A general solution includes arbitrary constants such as $C$.
- A particular solution is a specific solution after constants are determined.
- An initial condition gives a starting value such as $y(0)=3$.
- An initial value problem combines a differential equation with an initial condition.
- A family of solutions is a collection of related solutions with different constants.
- Solution curves are graphs of the solutions.
- These terms help describe and solve real-world problems involving change.
