vidhyapath ← EAMCET Hub
Chapter progress
Layer 1 of 5
MathematicsModerate Weightage ★★★Class 12

Differential Equations

Order, degree, variable separable, homogeneous, and linear ODEs — a focused chapter with 2–3 predictable EAPCET questions.

2–3Questions in EAPCET
~3%Paper Weightage
6Core Methods
3Mistake Traps

Concept Core

From classification to solution methods — the complete ODE framework for EAPCET.

Classification: Order & Degree
TermDefinitionExample
OrderHighest derivative presentd²y/dx² + dy/dx = 0: order 2
DegreePower of the highest derivative (after clearing radicals/fractions)(dy/dx)³ + y = 0: degree 3

Note: Degree is defined only when the ODE is a polynomial in derivatives. Equations with terms like e^(dy/dx) or sin(dy/dx) have undefined degree.

Variable Separable Method

When the ODE can be written as f(y)dy = g(x)dx, integrate both sides separately.

dy/dx = g(x)/h(y) → h(y)dy = g(x)dx → ∫h(y)dy = ∫g(x)dx + C

This is the simplest and most commonly tested method. Always check if separation is possible first.

Homogeneous Differential Equations

An ODE dy/dx = f(x,y) is homogeneous if f(tx, ty) = f(x,y) for all t. Equivalently, dy/dx = g(y/x) form.

Solution: Substitute y = vx → dy/dx = v + x·dv/dx. This converts it to separable form in v and x.

Linear First-Order ODE

Form: dy/dx + P(x)y = Q(x)

Integrating factor (IF): μ = e^(∫P(x)dx) Solution: y × IF = ∫Q(x) × IF dx + C

Multiply both sides by IF. The LHS becomes d/dx[y × IF], which integrates directly.

Exact Differential Equations

M(x,y)dx + N(x,y)dy = 0 is exact if ∂M/∂y = ∂N/∂x.

Solution: F(x,y) = ∫M dx + g(y), where g(y) is found using ∂F/∂y = N.

Formation of Differential Equations

To form a DE from y = f(x, c₁, c₂, ...), differentiate and eliminate the arbitrary constants.

n arbitrary constants → differentiate n times → eliminate constants → nth order ODE.

EAPCET pattern: "Form the DE representing all circles of radius r" → differentiate the circle equation twice to eliminate a, b; keep r.

Formula Vault

Differential equations methods and solution forms.

Variable Separable
∫h(y)dy = ∫g(x)dx + C
Separate and integrate both sides
Homogeneous Substitution
y = vx → dy/dx = v + x·dv/dx
Reduces to separable in v, x
Linear ODE Integrating Factor
IF = e^(∫P dx)
For dy/dx + Py = Q
Linear ODE Solution
y·(IF) = ∫Q·(IF)dx + C
Multiply both sides by IF first
Exactness Condition
∂M/∂y = ∂N/∂x
For M dx + N dy = 0
Order of DE
Highest derivative order
d²y/dx²: order 2
Degree of DE
Power of highest derivative
After clearing radicals/fractions
Bernoulli Equation
dy/dx + Py = Qyⁿ
Substitute v = y^(1-n) to linearise

Worked Examples

5 problems — order/degree, separable, homogeneous, linear ODE, and a common trap.

EasyFind order and degree of: (d²y/dx²)³ + 5(dy/dx) = 0
Find the order and degree of the differential equation (d²y/dx²)³ + 5(dy/dx) = 0.
1
Highest derivative: d²y/dx² → Order = 2
2
Power of the highest derivative (d²y/dx²)³: Degree = 3
✓  Order = 2, Degree = 3
EasySolve: dy/dx = (1+y²)/(1+x²)
Solve the differential equation dy/dx = (1+y²)/(1+x²).
1
Separate: dy/(1+y²) = dx/(1+x²)
2
Integrate both sides: tan⁻¹y = tan⁻¹x + C
✓  tan⁻¹y = tan⁻¹x + C  or  tan⁻¹y − tan⁻¹x = C
MediumSolve the linear ODE: dy/dx + y/x = x²
Solve dy/dx + (1/x)y = x².
1
P(x) = 1/x → IF = e^(∫1/x dx) = e^(ln x) = x
2
Multiply: d/dx[xy] = x³
3
Integrate: xy = x⁴/4 + C → y = x³/4 + C/x
✓  y = x³/4 + C/x
EAPCET LevelSolve the homogeneous ODE: x dy/dx = y + x tan(y/x)
Solve x dy/dx = y + x tan(y/x).
1
Let y = vx → dy/dx = v + x dv/dx
2
LHS: x(v + x dv/dx) = vx + x² dv/dx
3
RHS: vx + x tan(v)
4
Simplify: x² dv/dx = x tan(v) → dv/tan(v) = dx/x → cot(v)dv = dx/x
5
Integrate: ln|sin v| = ln|x| + C → sin(y/x) = Ax (A = eᶜ)
✓  sin(y/x) = Ax
Trap QuestionDegree of ODE with e^(dy/dx) — students say degree = 1
Find the degree of: e^(dy/dx) + x·dy/dx = y.
1
The trap: The term e^(dy/dx) is transcendental — it cannot be expressed as a polynomial in dy/dx.
2
Degree is defined only when the ODE is a polynomial in its derivatives.
3
Since e^(dy/dx) is NOT a polynomial in dy/dx, the degree is undefined (not defined).
4
Order = 1 (highest derivative is dy/dx), but degree cannot be determined.
✓  Order = 1, Degree = not defined (transcendental in derivatives)

Mistake DNA

3 differential equations errors from EAPCET distractor analysis.

📏
Degree = Order (Confusing the Two)
Order = highest derivative present. Degree = power of that highest derivative. They are different concepts.
❌ Wrong
(dy/dx)³ + y = 0: Order = 3, Degree = 3 ✗ (order = 1, degree = 3)
✓ Correct
Highest derivative: dy/dx ✓ Order = 1 ✓ Power of (dy/dx)³ = 3 ✓ Degree = 3 ✓
Order and degree are both 'about' the highest derivative, but measure different things. Order = which derivative (1st, 2nd, ...); Degree = what power is it raised to.
🔧
Forgetting e^(∫P dx) for Integrating Factor
For linear ODE dy/dx + Py = Q, the integrating factor is e^(∫P dx), not just P or ∫P.
❌ Wrong
dy/dx + (2/x)y = x: IF = 2/x ✗ (that's just P, not IF!)
✓ Correct
IF = e^(∫2/x dx) = e^(2ln x) = x² ✓ Then multiply ODE by x² ✓
IF = e raised to the INTEGRAL of P, not P itself. Compute ∫P dx first, then exponentiate.
Adding Constant to Both Sides After Integration
When separating variables and integrating, only ONE constant of integration is needed (combine LHS and RHS constants into one C).
❌ Wrong
∫f(y)dy = ∫g(x)dx: F(y) + C₁ = G(x) + C₂ ✗ (two constants; redundant)
✓ Correct
F(y) = G(x) + C ✓ (C = C₂ − C₁) One arbitrary constant for first-order ODE
Combining C₂ − C₁ = C is standard practice. A first-order ODE has exactly one arbitrary constant in its general solution.

Chapter Intelligence

DEs connect Calculus, Physics (Newton's laws, SHM) and Chemistry (rate equations).

EAPCET Weightage (2019–2024)
Variable separable method
~7
Linear first-order ODE
~6
Order and degree identification
~5
Homogeneous equations
~4
Formation of DE
~3
High-Yield PYQ Patterns
Identify order and degreeSolve by variable separationLinear ODE: find IF and solveHomogeneous: substitute y=vxForm DE from given curve familyDegree undefined for transcendental DEs
Exam Strategy
  • Order/degree questions: find the highest derivative (order), then look at its power (degree). Watch for transcendental terms — degree is undefined for e^(dy/dx), sin(dy/dx), etc.
  • Variable separable: move all y and dy to one side, all x and dx to the other. Integrate both sides. Add only one constant C.
  • Linear ODE: identify P(x) and Q(x) from dy/dx + Py = Q. Compute IF = e^(∫P dx). Multiply and integrate.
  • Homogeneous: if dy/dx = f(y/x), substitute y = vx. The equation separates into v and x form.