Question
Given a differential equation, how do you classify it and choose the right solution method — variable separable, homogeneous, linear, or exact? Provide a decision framework.
(JEE Main tests DE type identification in 1-2 questions; CBSE 12 asks specific solution methods)
Solution — Step by Step
Can you write the equation as ? If yes, just integrate both sides.
Example: → →
When to use: When all terms can be moved to one side and all terms to the other.
If or every term has the same degree in and , the equation is homogeneous.
Substitute (so ). This converts it to a variable separable equation in and .
Example: → let → becomes separable.
Standard form:
This is solved using the integrating factor method:
Multiply throughout by IF, and the left side becomes .
Bernoulli equation: . Substitute to reduce it to linear form.
Exact equation: where . The solution is found by integration: .
flowchart TD
A["Given DE: dy/dx = ..."] --> B{Can separate x and y?}
B -->|Yes| C["Variable Separable<br/>Integrate both sides"]
B -->|No| D{Same degree in x and y?}
D -->|Yes| E["Homogeneous<br/>Put y = vx"]
D -->|No| F{Form: dy/dx + Py = Q?}
F -->|Yes| G["Linear<br/>IF = e^∫P dx"]
F -->|No| H{Form: dy/dx + Py = Qy^n?}
H -->|Yes| I["Bernoulli<br/>Substitute v = y^(1−n)"]
H -->|No| J["Check for Exact or<br/>use other methods"]
Why This Works
Each type of DE has a specific structure, and the solution method exploits that structure. Variable separable directly uses the fundamental theorem of calculus. Homogeneous equations have a scaling symmetry that the substitution exploits. Linear DEs have a special property: the integrating factor makes the left side a perfect derivative.
The decision tree works from simplest to most complex. Always try variable separable first — it is the fastest. If that fails, check homogeneity, then linearity.
Alternative Method
For CBSE boards, 90% of questions are either variable separable or linear. If you master just these two methods thoroughly, you will handle most DE questions. The integrating factor for a linear DE can be computed quickly: if , then .
Common Mistake
Students try to apply the linear DE method to a non-linear equation. The method only works when the equation is linear in y — meaning appears only to the first power (no , no , no ). If appears in a non-linear form, you need a different approach (Bernoulli substitution, or variable separable after rearrangement). Always verify linearity before computing the integrating factor.