Class 12 Mathematics Notes Chapter 3 (Differential Equations) – Mathematics Part-II Book
Alright class, let's get straight into Differential Equations. This chapter is crucial not just for your board exams but forms the basis for many concepts asked in various government examinations. We'll cover the key concepts from your NCERT textbook, focusing on what's essential for competitive settings.
Chapter 9: Differential Equations - Detailed Notes for Government Exam Preparation
1. Introduction & Basic Concepts
- Definition: An equation involving derivatives (or differentials) of one or more dependent variables with respect to one or more independent variables is called a differential equation.
- Example:
dy/dx = x + sin(x)
,d²y/dx² + y = 0
,(dy/dx)² + dy/dx = cos(x)
- Example:
- Ordinary Differential Equation (ODE): A differential equation involving derivatives of the dependent variable with respect to only one independent variable. Our syllabus primarily deals with ODEs.
- Examples above are all ODEs.
- Partial Differential Equation (PDE): Involves partial derivatives with respect to more than one independent variable. (Generally outside the scope of Class 12 based exams, but good to know the distinction).
- Example:
∂²u/∂x² + ∂²u/∂y² = 0
- Example:
2. Order and Degree of a Differential Equation
-
Order: The order of the highest order derivative present in the differential equation.
dy/dx + y = x
has order 1.d³y/dx³ + x(d²y/dx²) + y = 0
has order 3.(dy/dx)² + y = 0
has order 1.
-
Degree: The highest power (positive integer) of the highest order derivative, after the differential equation has been made free from radicals and fractions as far as the derivatives are concerned (i.e., expressed as a polynomial equation in derivatives).
d²y/dx² + (dy/dx)³ + y = 0
: Order is 2. The highest order derivative isd²y/dx²
, its power is 1. So, Degree is 1.(d³y/dx³)² + 2(d²y/dx²)⁵ + y = 0
: Order is 3. The highest order derivative isd³y/dx³
, its power is 2. So, Degree is 2.dy/dx + sin(dy/dx) = 0
: Order is 1. Degree is not defined because the equation cannot be expressed as a polynomial indy/dx
.√(1 + (dy/dx)²) = d²y/dx²
: First, square both sides:1 + (dy/dx)² = (d²y/dx²)²
. Order is 2. Highest order derivative isd²y/dx²
, its power is 2. So, Degree is 2.
Key Point for Exams: Questions directly asking for order and degree are common. Be careful with radicals and functions of derivatives when determining the degree.
3. Formation of a Differential Equation
- Given a family of curves (an equation with arbitrary constants), a differential equation can be formed whose solution is that family.
- Process:
- Write down the given equation of the family of curves.
- Count the number of independent arbitrary constants (say, 'n').
- Differentiate the equation 'n' times successively.
- Eliminate the 'n' arbitrary constants using the original equation and the 'n' derived equations.
- The resulting equation, free from arbitrary constants, is the required differential equation. Its order will be 'n'.
- Example: Form the DE for
y = mx
(family of lines through origin, 'm' is the constant).- n = 1 (only 'm').
- Differentiate once:
dy/dx = m
. - Eliminate 'm' using the original equation (
m = y/x
) and the derivative:dy/dx = y/x
orx(dy/dx) - y = 0
. This is the required DE.
4. Solution of a Differential Equation
- General Solution: A solution which contains as many independent arbitrary constants as the order of the differential equation. It represents the family of curves satisfying the DE.
- Particular Solution: A solution obtained from the general solution by giving particular values to the arbitrary constants. These values are usually determined using given initial or boundary conditions.
- Example: For
dy/dx = 2x
, the general solution isy = x² + C
. If it's given thaty(0) = 5
, then5 = 0² + C => C = 5
. The particular solution isy = x² + 5
.
- Example: For
5. Methods of Solving First Order, First Degree Differential Equations
These are the most important types for your exams.
-
(a) Variables Separable:
- Form: The equation can be written as
f(x) dx = g(y) dy
orf(x) dx + g(y) dy = 0
. - Method: Separate the terms involving x and dx on one side and terms involving y and dy on the other side. Integrate both sides and add an arbitrary constant of integration 'C' on one side.
∫ f(x) dx = ∫ g(y) dy + C
- Example: Solve
dy/dx = (1+y²)/(1+x²)
.- Separate:
dy/(1+y²) = dx/(1+x²)
. - Integrate:
∫ dy/(1+y²) = ∫ dx/(1+x²) + C
. - Solution:
tan⁻¹(y) = tan⁻¹(x) + C
.
- Separate:
- Form: The equation can be written as
-
(b) Homogeneous Differential Equations:
- Definition: A function
F(x, y)
is homogeneous of degree 'n' ifF(λx, λy) = λⁿ F(x, y)
. A first-order DE of the formdy/dx = F(x, y)
(ordx/dy = G(x, y)
) is homogeneous ifF(x, y)
is a homogeneous function of degree zero (i.e., can be expressed asg(y/x)
orh(x/y)
).- Often recognizable as equations where each term has the same total degree in x and y. Example:
dy/dx = (x² + y²)/(xy)
.
- Often recognizable as equations where each term has the same total degree in x and y. Example:
- Method:
- Substitute
y = vx
. Thendy/dx = v + x(dv/dx)
. - Substitute these into the original equation. The equation will transform into a variables separable form in terms of 'v' and 'x'.
- Separate variables (v and dv on one side, x and dx on the other).
- Integrate both sides.
- Replace
v
withy/x
to get the solution in terms of x and y.
- (Alternatively, if the form is
dx/dy = H(x, y)
where H is homogeneous of degree zero, use substitutionx = vy
).
- Substitute
- Example: Solve
dy/dx = (x+y)/x
.dy/dx = 1 + y/x
. This is homogeneous.- Put
y = vx => dy/dx = v + x(dv/dx)
. v + x(dv/dx) = 1 + v => x(dv/dx) = 1
.- Separate:
dv = dx/x
. - Integrate:
∫ dv = ∫ dx/x + C => v = ln|x| + C
. - Replace
v = y/x
:y/x = ln|x| + C
ory = x(ln|x| + C)
.
- Definition: A function
-
(c) Linear Differential Equations:
- Form:
dy/dx + P(x) y = Q(x)
, where P(x) and Q(x) are functions of x only (or constants). - Method:
- Identify P(x) and Q(x).
- Calculate the Integrating Factor (I.F.):
I.F. = e^(∫ P(x) dx)
. - The general solution is given by:
y * (I.F.) = ∫ [Q(x) * (I.F.)] dx + C
.
- Alternative Form:
dx/dy + P₁(y) x = Q₁(y)
, where P₁(y) and Q₁(y) are functions of y only (or constants).I.F. = e^(∫ P₁(y) dy)
.- Solution:
x * (I.F.) = ∫ [Q₁(y) * (I.F.)] dy + C
.
- Example: Solve
dy/dx + (1/x)y = x²
.- This is linear with
P(x) = 1/x
andQ(x) = x²
. ∫ P(x) dx = ∫ (1/x) dx = ln|x|
.I.F. = e^(ln|x|) = |x|
. Assuming x > 0, I.F. = x.- Solution:
y * x = ∫ (x² * x) dx + C = ∫ x³ dx + C
. xy = x⁴/4 + C
.
- This is linear with
- Form:
Key Strategy for Exams:
- Check if the equation is Variables Separable.
- If not, check if it's Homogeneous (can it be written as
dy/dx = g(y/x)
?). - If not, check if it's Linear (
dy/dx + Py = Q
ordx/dy + P₁x = Q₁
).
Mastering these three forms and their solution methods is essential. Remember to practice integration thoroughly, as it's integral (pun intended!) to solving differential equations.
Multiple Choice Questions (MCQs)
-
The order and degree of the differential equation
(d²y/dx²)³ + (dy/dx)⁴ + sin(x) + 1 = 0
are respectively:
(a) 2, 4
(b) 2, 3
(c) 3, 2
(d) 4, 2 -
The order and degree of the differential equation
[1 + (dy/dx)²]^(3/2) = 5 (d²y/dx²)
are respectively:
(a) 2, 2
(b) 2, 3
(c) 1, 3
(d) 2, degree not defined -
The differential equation representing the family of curves
y = A cos(x) + B sin(x)
, where A and B are arbitrary constants, is:
(a)d²y/dx² + y = 0
(b)d²y/dx² - y = 0
(c)dy/dx + y = 0
(d)d²y/dx² + (dy/dx)² = 0
-
The general solution of the differential equation
dy/dx = e^(x-y)
is:
(a)e^y = e^x + C
(b)e^x + e^y = C
(c)e^(-y) = e^x + C
(d)e^x + e^(-y) = C
-
The differential equation
dy/dx = (x²+y²)/(2xy)
is:
(a) Linear
(b) Homogeneous
(c) Variables Separable
(d) None of these -
The Integrating Factor (I.F.) for the differential equation
x(dy/dx) - y = 2x²
is:
(a)x
(b)-1/x
(c)1/x
(d)e^(-1/x)
-
The solution of the differential equation
dy/dx + y tan(x) = sec(x)
is:
(a)y sec(x) = tan(x) + C
(b)y tan(x) = sec(x) + C
(c)y cos(x) = x + C
(d)y sin(x) = x + C
-
The particular solution of the differential equation
dy/dx = y/x
, given thaty=1
whenx=1
, is:
(a)y = x
(b)y = 1/x
(c)y = ln|x|
(d)y = e^x
-
The differential equation formed by eliminating the arbitrary constant 'c' from
y² = 4ax
is: (Assuming 'a' is a fixed constant)
(a)y = 2x (dy/dx)
(b)y² = x (dy/dx)
(c)2y = x (dy/dx)
(d)y = x² (dy/dx)
(Self-correction: The question should likely eliminate 'a' treating it as the arbitrary constant. Let's assume 'a' is the arbitrary constant)
The differential equation formed by eliminating the arbitrary constant 'a' fromy² = 4ax
is:
(a)y = 2x (dy/dx)
(b)y² = x (dy/dx)
(c)2y = x (dy/dx)
(d)y = x² (dy/dx)
-
The general solution of
dy/dx = (y+x)/x
is:
(a)y = x log|x| + Cx
(b)y = x log|x| + C
(c)log|y| = x + C
(d)y = log|x| + Cx
Answer Key for MCQs:
- (b) Order is 2 (highest derivative
d²y/dx²
), Degree is 3 (power of highest derivative). - (a) Square both sides:
[1 + (dy/dx)²]³ = 25 (d²y/dx²)²
. Highest derivative isd²y/dx²
, its highest power is 2. Order = 2, Degree = 2. - (a)
y = A cos(x) + B sin(x)
.dy/dx = -A sin(x) + B cos(x)
.d²y/dx² = -A cos(x) - B sin(x) = -(A cos(x) + B sin(x)) = -y
. So,d²y/dx² + y = 0
. - (a)
dy/dx = e^x / e^y => e^y dy = e^x dx
. Integrate:∫ e^y dy = ∫ e^x dx + C => e^y = e^x + C
. - (b)
dy/dx = (1 + (y/x)²)/(2(y/x))
. It's a function ofy/x
, hence homogeneous. - (c) First write in standard form:
dy/dx - (1/x)y = 2x
. HereP(x) = -1/x
.∫ P(x) dx = ∫ (-1/x) dx = -ln|x| = ln|1/x|
.I.F. = e^(ln|1/x|) = 1/x
(assuming x>0). - (a)
P(x) = tan(x)
,Q(x) = sec(x)
.∫ P(x) dx = ∫ tan(x) dx = ln|sec(x)|
.I.F. = e^(ln|sec(x)|) = sec(x)
. Solution:y * sec(x) = ∫ sec(x) * sec(x) dx + C = ∫ sec²(x) dx + C = tan(x) + C
. So,y sec(x) = tan(x) + C
. - (a)
dy/y = dx/x
. Integrate:ln|y| = ln|x| + C₁
.ln|y/x| = C₁ => y/x = e^(C₁) = C
. So,y = Cx
. Giveny=1
whenx=1
,1 = C*1 => C=1
. Particular solution isy = x
. - (a)
y² = 4ax
. Differentiate wrt x:2y (dy/dx) = 4a
. So,4a = 2y (dy/dx)
. Substitute back into original equation:y² = (2y dy/dx) * x
. Since y is generally not 0, divide by y:y = 2x (dy/dx)
. - (a)
dy/dx = y/x + 1
. Puty = vx => dy/dx = v + x(dv/dx)
.v + x(dv/dx) = v + 1 => x(dv/dx) = 1
.dv = dx/x
. Integrate:v = ln|x| + C
. Replacev = y/x
:y/x = ln|x| + C => y = x ln|x| + Cx
.
Study these concepts thoroughly, practice identifying the type of first-order DE, and be very comfortable with integration techniques. Good luck with your preparation!