DIFFERENTIAL EQUATIONS • FIRST-ORDER DIFFERENTIAL EQUATIONS

Identifying Separable DEs — Identifying Separable Differential Equations

Learn to recognize when a differential equation can be split into pieces that each involve only one variable.

Historical Context & Motivation

Differential equations describe how quantities change, and scientists have been wrestling with them for over three centuries. One of the earliest and most powerful tricks mathematicians discovered was separation of variables — the idea that some equations can be pulled apart so that each variable lives on its own side of the equation. Before anyone could solve these equations, though, they first had to learn how to identify which equations are separable and which are not.

1676
Leibniz Introduces dy/dx Notation
Gottfried Wilhelm Leibniz develops the notation dy/dx, making it natural to think of differentials as separate objects that can be manipulated algebraically.
1691
First Separable Equations Solved
Leibniz and the Bernoulli brothers solve differential equations by separating variables, treating dy and dx as quantities that can be moved to different sides.
1748
Euler Systematizes the Technique
Leonhard Euler organizes differential equation techniques in his textbooks, classifying separable equations as a distinct and fundamental type.
Modern Era
Separable DEs in Science & Engineering
Today, separable differential equations model radioactive decay, population growth, cooling processes, and countless other phenomena studied in physics, biology, and engineering.

The central question this lesson addresses is straightforward but essential: given a first-order differential equation, how do you tell whether it is separable? If you can recognize a separable equation when you see one, you unlock one of the simplest and most widely applicable solution methods in all of differential equations.

Core Principles & Definitions

A first-order differential equation relates a function y to its derivative dy/dx. When we say an equation is separable, we mean the right-hand side can be written as a product of two functions — one that depends only on x and one that depends only on y. That is the defining feature, and everything else flows from it.

1

Separable Form

A DE is separable if dy/dx can be rewritten as f(x) · g(y), a product where x-terms and y-terms are completely separated.
2

The Factoring Test

Try to factor the right-hand side into a piece containing only x and a piece containing only y. If you succeed, the equation is separable. If no factoring works, it is not.
3

Mixed Terms Are Red Flags

Terms like x + y, xy², or sin(x + y) that entangle x and y together through addition inside a function often prevent separation.
4

Products vs. Sums

Products like x²y³ are separable (factor as x² · y³). Sums like x² + y³ are typically not separable because you cannot factor a sum into a pure-x times pure-y form.
KEY TAKEAWAY
Think of a separable equation like a recipe with two independent ingredient lists — one for the filling and one for the crust. If you can prepare each part using only its own ingredients without borrowing from the other, the recipe is 'separable.' In the same way, a separable DE lets you gather all x-ingredients on one side and all y-ingredients on the other, then handle each independently.

Visual Explanation

Decision Flowchart: Is Your DE Separable?

This flowchart shows the decision process for identifying separable differential equations. Start at the top with your equation in the form dy/dx = h(x, y), then ask whether the right-hand side can be factored into f(x) · g(y). If not immediately obvious, try algebraic manipulation before concluding the equation is not separable.

The flowchart above captures the essential thought process. When you encounter a differential equation, your first move is to look at the right-hand side and ask: can I write this as something that depends only on x, multiplied by something that depends only on y? Sometimes the answer is immediately clear — for example, dy/dx = x²y is obviously the product of x² and y. Other times, you need to factor or rearrange before the separable structure reveals itself.

Mathematical Framework

The mathematical definition of a separable differential equation is precise. Understanding the form below is the key to identifying these equations reliably.

GENERAL SEPARABLE FORM
dy/dx = f(x) · g(y)
Here, f(x) is any expression involving only x, and g(y) is any expression involving only y. The derivative equals their product.
ALTERNATIVE QUOTIENT FORM
dy/dx = f(x) / h(y)
This is equivalent to the product form because you can write it as f(x) · (1/h(y)). Here g(y) = 1/h(y). Either form counts as separable.
SEPARATED EQUATION (AFTER REARRANGING)
(1/g(y)) dy = f(x) dx
Once identified as separable, you move all y-terms to the left with dy and all x-terms to the right with dx. Then you integrate both sides to solve.

Notice that a separable equation can also look like dy/dx = f(x) alone (where g(y) = 1) or dy/dx = g(y) alone (where f(x) = 1). Both of these special cases are separable. The critical thing to check is whether x and y can be untangled from each other so that each variable lives in its own factor.

Common Pitfall
An expression like dy/dx = x + y is not separable. You cannot factor x + y into a product f(x) · g(y). Addition between x and y terms almost always prevents separation. In contrast, dy/dx = xy is separable because xy = x · y is already a product.

Classifying Equations: Separable vs. Non-Separable

The best way to build intuition is to see many examples side by side. The diagram below organizes common equation forms into two groups: those that are separable and those that are not. Study the patterns and notice what distinguishes one group from the other.

This comparison chart shows examples of separable and non-separable equations. Notice the highlighted tricky case: dy/dx = ex+y looks non-separable but is actually separable because ex+y = ex · ey. Always try algebraic rules before giving up!

Key Patterns to Recognize

Quick reference for common separability patterns
PatternSeparable?Why
dy/dx = (expression in x only)Yes ✓g(y) = 1, trivially separable
dy/dx = (expression in y only)Yes ✓f(x) = 1, trivially separable
dy/dx = (x stuff) × (y stuff)Yes ✓Already in product form
dy/dx = (x stuff) / (y stuff)Yes ✓Rewrite as product with reciprocal
dy/dx = (x stuff) + (y stuff)No ✗Sum cannot become a product
dy/dx = function(x + y)Usually No ✗x and y are entangled inside the function

Worked Example

Let's walk through the process of identifying whether several differential equations are separable, showing the reasoning at each step.

Example 1: Is dy/dx = (2x + 6)(y² − 1) separable?
1
Step 1 — Examine the StructureThe right-hand side is (2x + 6)(y² − 1). This is already written as a product of two factors. Let's check: does the first factor depend only on x, and does the second depend only on y?
2
Step 2 — Identify f(x) and g(y)The factor (2x + 6) contains only x. The factor (y² − 1) contains only y. They are already separated!
f(x) = 2x + 6, g(y) = y² − 1
3
Step 3 — ConclusionSince dy/dx = f(x) · g(y) with f(x) = 2x + 6 and g(y) = y² − 1, this equation is separable.
SEPARABLE ✓
Example 2: Is dy/dx = x² + xy separable?
1
Step 1 — Examine the StructureThe right-hand side is x² + xy. This is a sum of two terms. Sums are usually not separable, but let's try factoring before we give up.
2
Step 2 — Attempt to FactorFactor out x from both terms: x² + xy = x(x + y). Now we have x multiplied by (x + y). The factor x depends only on x, but the factor (x + y) depends on both x and y.
x² + xy = x(x + y) — mixed factor remains
3
Step 3 — ConclusionNo factoring can separate (x + y) into a product of a pure-x and a pure-y function. The equation is not separable.
NOT SEPARABLE ✗
Example 3: Is dy/dx = e^(x+y) separable?
1
Step 1 — Examine the StructureAt first glance, e raised to (x + y) looks non-separable because x and y are added inside the exponent. But recall the exponent rule: ea+b = ea · eb.
2
Step 2 — Apply the Exponent RuleRewrite: ex+y = ex · ey. Now f(x) = ex and g(y) = ey.
ex+y = ex · ey
3
Step 3 — ConclusionDespite the sum in the exponent, this equation is separable. This is a classic trick that catches many students off guard. Always check whether algebraic rules can split the expression.
SEPARABLE ✓ (disguised)

Strengths & Limitations of Separable DEs

Separable equations are one of several types of first-order differential equations. Understanding where they fit relative to other types helps you know when to reach for this technique and when to try something else.

Strengths and limitations of the separable equation technique
FeatureStrengthsLimitations
Ease of identificationOften the fastest check — just try to factor the right-hand sideSome disguised separable equations require clever algebra to recognize
Solution methodStraightforward: separate and integrate both sidesThe resulting integrals may be difficult or impossible to evaluate in closed form
ApplicabilityCovers many real-world models: growth, decay, coolingMany important DEs (like dy/dx = x + y) are not separable
PrerequisitesRequires only basic integration skillsDoes not apply to higher-order equations directly
🧩 WHERE SEPARABLE DEs FIT
Separable equations are one tool in your differential equations toolbox. Think of your toolbox like a smartphone's app drawer: separation of variables is your go-to, everyday app — it handles a lot of common tasks. But for equations that resist separation, you'll need other apps like integrating factors (for linear equations) or substitution methods (for homogeneous or Bernoulli equations).

Connection to Advanced Techniques

Identifying whether an equation is separable is typically the first question you ask when facing a new differential equation. If it is separable, you can solve it immediately using separation of variables. If it isn't, you move on to check for other forms. The table below shows how the identification process connects to more advanced classifications.

First-order DE classification hierarchy
Equation TypeFormExampleMethod
Separabledy/dx = f(x)·g(y)dy/dx = x·y²Separate & integrate
Lineardy/dx + P(x)y = Q(x)dy/dx + 2y = eˣIntegrating factor
ExactM(x,y)dx + N(x,y)dy = 0(2xy)dx + (x²)dy = 0Find potential function
Homogeneousdy/dx = F(y/x)dy/dx = (x+y)/xSubstitution v = y/x

As you continue studying differential equations, you'll learn to quickly classify an equation by checking these forms in order. Many textbooks suggest checking for separability first because it's the simplest test and the solution method is the most accessible. If the equation turns out to be both separable and linear — for instance, dy/dx = 2y — separation of variables is almost always the easier route.

🔭 Looking Ahead
Once you are comfortable identifying separable equations, the next step is learning to solve them by separating variables and integrating both sides. You'll also encounter partial differential equations (PDEs) in advanced courses, where a more sophisticated version of separation of variables becomes one of the most powerful techniques in mathematical physics.

Practice Problems

Test your understanding with these five problems. For each, determine whether the differential equation is separable, and if so, identify f(x) and g(y).

PROBLEM 1CONCEPTUAL
In your own words, explain what it means for a first-order differential equation to be separable. Why is the word 'separable' a good name for this type of equation?
PROBLEM 2BASIC CALCULATION
Determine whether the following equation is separable: dy/dx = 3x²y⁴. If it is, identify f(x) and g(y).
PROBLEM 3INTERMEDIATE
Classify each equation as separable or not separable, and briefly justify your answer: (a) dy/dx = (x² − 4)/(y + 1), (b) dy/dx = x² − y², (c) dy/dx = (xy + x)/(y − 1).
PROBLEM 4APPLIED
A population P grows at a rate proportional to both its current size and the remaining capacity (K − P), where K is the carrying capacity. The model is dP/dt = rP(K − P), where r and K are positive constants. Is this differential equation separable? If so, identify the functions of t and P.
PROBLEM 5CRITICAL THINKING
Consider the equation dy/dx = (x²y + x²) − (y + 1). At first glance, this appears non-separable because it contains sums and differences. Show that this equation is actually separable by using algebraic manipulation, and identify f(x) and g(y).

Lesson Summary

A first-order differential equation is separable when its right-hand side can be written as a product f(x) · g(y), where f depends only on x and g depends only on y. To identify a separable equation, examine the right-hand side and attempt to factor it into pure-x and pure-y components. Products and quotients of x-only and y-only terms are separable; sums that mix x and y are usually not. Always try algebraic manipulation — factoring, exponent rules, and regrouping — before concluding that an equation is non-separable.

Watch for disguised separable equations like ex+y = ex · ey or expressions that can be factored by grouping. Identifying separable equations is the essential first step in solving them through separation of variables, and it is typically the very first check you should perform when classifying any first-order differential equation.

Varsity Tutors • Differential Equations • Identifying Separable DEs