Numerical Methods and Complex Variables Digital Notes
Numerical Methods and Complex Variables Digital Notes
3 -/ - /- 4
Objectives: To learn
Inverse Laplace transform by Partial fractions, Inverse Laplace transforms of functions when
they are multiplied or divided by ”s”, Inverse Laplace Transforms of derivatives and integrals
of functions, Convolution theorem.Solving ordinary differential equations by Laplace
transforms.
Radius of convergence – Expansion in Taylor’s series, Laurent series. Singular point – Isolated
singular point – pole of order m – essential singularity. Residue – Evaluation of residue by
formula and by Laurent series – Residue theorem. Evaluation of integrals of the type
TEXT BOOKS:
REFERENCES:
Course Outcomes: After going through this course the students will be able to
1. Understand the Numerical differentiation and able to solve the second order ODE by
Numerical methods.
2. Solve differential equations with initial conditions using Laplace Transformation.
3. Analyze the complex functions with reference to their analyticity and integration
using Cauchy’s integral theorem.
4. Find the Taylor’s and Laurent series expansion of complex functions and solution of
improper integrals can be obtained by Cauchy’s-Residue theorem.
5. Understand the conformal transformations of complex functions can be dealt with
ease.
UNIT-I
NUMERICAL METHODS
1
INTRODUCTION-INTERPOLATION
Using mathematical modeling, most of the problems in eng and physical and
economical sciences can be formulated in terms of systems of linear or non linear
equations, ordinary or partial differential equations or Integra equations. In majority of the
cases, the solutions to these problems in analytical form are non-existent or difficult or not
amenable for direct interpretation. In all such problems, numerical analysis provides
approximate solutions practical and amenable for analysis. Numerical analysis does not
strive for exaxtness.instaed.it yields approximations with specified degree of accuracy.
The early disadvantages of the several numbers of computations involved has been
removed through high speed computation using computers, giving results which are
accurate, reliable and fast. Numerical is not only a science but also an ‘art’ because the
choice of ‘appropriate’ procedure which ‘best’ suits to a given problem yields ‘good’
solutions.
Definition:
single valued and continuous and is known explicitly then the values of f x for certain values
of 𝑥 like x0, x1,.........xn can be calculated. The problem now is if we are given the set of tabular
values
2
𝑥∶ 𝑥0 𝑥1 𝑥2 …………… 𝑥𝑛
𝑦∶ 𝑦0 𝑦1 𝑦2 ……………. 𝑦𝑛
possible to find a simple function say 𝜙(𝑥) such that f x and x agree at the set of
then the process is called polynomial interpolation and x is called interpolating polynomial.
OR
Let x0 , x1 xn be the values 𝑥 and y , y , y , , y be the values of 𝑦 and 𝑦 = 𝑓(𝑥)
0 1 2 n
be a unknown function .The process to find the value of the unknown function 𝑦 = 𝑓(𝑥) when
the given value of 𝑥 and the value of 𝑥 lies within the limits x0 to xn is called interpolation
ITERATION METHOD:
Consider an equation f(x)=0 , which can taken in the form x =φ(x) ,where φ(x) satisfies the
following conditions:
put x1 =φ(x0 ) and take x1 as the first approximation of α .where α has a unique root in
the interval (a,b).
next we put x2 =φ(x2) and take x2 as the second approximation of α. Continuing the process
,we get the third approximation x3 ,the fourth approximation x4 and so on.
4
Example:1
By the fixed point iteration process, find the root correct to 3-decial places, of the equation
x=cosx, near x=π/4.
Sol:The given equation is of the form x=φ(x),where φ(x)=cosx. |𝜑′(𝑥)| = |𝑠𝑖𝑛𝑥| < 1 ,for all x.
Hence,the iteration process xn =φ(xn-1) is convergent in every interval .since the root is required
near π/4 ,we take the initial approximation of the root as x0=π/4 =0.7853.
x1=φ(x0)=cos(π/4)=0.7071 ,
x2=φ(x1)=cos(x1) =0.7602 ,
x3=cosx2=0.7246 ,
x4 =cosx3=0.7487 ,
x5=cosx4 =0.7325 ,
x6=cosx5=0.7434 ,
x7=cosx6=0.7361 .
by observing these iterations ,we conclude the approximation as 0.739 for the required root .
Example:2
By the single point iteration method, find the root of the equation x3-2x—5=0 which lies near
x=2.
Hence the iteration for φ(x) near x=2 converges.LetS us take the initial approximation for the
root as x0=2.
X1=φ(x0)=(2*2+5)1/3=91/3=2.08008, x2=2.09235,
X3=2.09422, x4=2.09450, x5=2.09454, x6=2.09455, x7=2.09455
5
Since x6 and x7 are identical upto 5 decimal places,we take x7=2.09455 as the required root,
correct to 5 places of decimals.
Example:3
Consider the differential equation 𝑑𝑦 = 𝑓(𝑥, 𝑦) with initial condition 𝑦(𝑥 0) = 𝑦0 then Picards
𝑑𝑥
𝑥
𝑦𝑛(𝑥) = 𝑦0 + ∫ 𝑓(𝑥, 𝑦𝑛−1)𝑑𝑥 𝑤ℎ𝑒𝑟𝑒 𝑛 = 1,2,3
𝑥0
Prob1 : Find the value of y fo x=0.4 by Picards method, given that 𝑑𝑦 =, 𝑦(0) =0
𝑑𝑥
6
𝑥
𝑦(𝑛)(𝑥) = 𝑦0 + ∫ 𝑓(𝑥, 𝑦𝑛−1)𝑑𝑥 𝑤ℎ𝑒𝑟𝑒 𝑛 = 1,2,3 … ..
𝑥0
𝑥 𝑥3
Now first approximation given by 𝑦(1)(𝑥) = (𝑥2)𝑑𝑥 =
∫0
𝑥 3
Second approximation is given by 𝑦(2)(𝑥) = 2
𝑥3 𝑥7
𝑥3 2 +
∫0 (𝑥 + ( 3 ) ) 𝑑𝑥 = 3 63
𝑥 𝑥3 2 𝑥3 + 𝑥7
∴ 𝑦(𝑥) ≈ 𝑦(2)(𝑥) =∫ (𝑥2 + ( ) ) 𝑑𝑥 =
0 3 3 63
0.43 0.4
7
∴ 𝑦(0.4) = +
3 63 = 0.0214
𝑑𝑥2 0 0 0 0
𝑑𝑧
Put 𝑑𝑦 = 𝑧, 𝑧1 = = 𝑓(𝑥, 𝑦, 𝑧)-------------------------------------- (2)
𝑑𝑥 𝑑𝑥
ℎ2
𝑦1 = 𝑦 0 + ℎ𝑦01 + 𝑦011 + − − − − −,
2!
ℎ2
𝑦 =𝑦 +ℎ
𝑧 + 𝑧 1 + − − − − −, ----------------- (6)
1 0 0
7
2! 0
Equation (2) gives 𝑧ˈ and differentiating it, we get 𝑧ˈˈ, 𝑧ˈˈˈ, … … … Hence 𝑧0ˈ, 𝑧0ˈˈ, …. Can be
obtained and using (6) and (5) we can get 𝑦1and 𝑧1. From 𝑦1and 𝑧1, get 𝑧1ˈ, 𝑧1ˈˈ, …. At (𝑥1, 𝑦1).
8
ℎ2 and using
Again using 𝑧 = 𝑧 + ℎ𝑧 1 + 𝑧 11 + − − − − −, we get 𝑧
2 1 1 2! 1 2
ℎ2
𝑦 = 𝑦 + ℎ𝑦 1 + 𝑦 11 + − − − − −,we get 𝑦 .
2 1 1 2! 1 2
𝟐
𝒚 𝒅𝒚
Example1: Evaluate 𝒚(𝟏. 𝟏) 𝒂𝒏𝒅 𝒚(𝟏. 𝟐) from𝒅 + 𝒚𝟐 = 𝒙𝟑, 𝒚(𝟏) = 𝟏, 𝒚ˈ(𝟏) = 𝟏, by
𝒅𝒙𝟐 𝒅𝒙
using Taylor series method.
𝟐𝒚 𝒅𝒚
Solution: Given 𝒅 + 𝒚𝟐 = 𝒙𝟑 -------------------------------------------------------- (1)
𝒅𝒙𝟐 𝒅𝒙
2
𝑧111 = 6𝑥 − 𝑦2𝑧11 − 2𝑦𝑦1𝑧1 − 2 [𝑦𝑧𝑦11 + 𝑦1 𝑧 + 𝑦𝑦1𝑧1]=6-0-1-2(1+0+0)=3.
(0.1)2
= 1 + (0.1)1 + (1) ± − − −= 1.1005
Substituting in (4) we get 𝑧1
2!
ℎ2
Similarly 𝑦 = 𝑦(𝑥 ) = 𝑦 + ℎ𝑦 1 + 𝑦 11 +−−−−−
2 2 1 1 2! 1
(0.1)2
𝑦 = 𝑦(𝑥 ) = 1.1002 + (0.1)𝑧 + 𝑧 1 + − − − − − ---------- (5)
2 2 1 2! 1
9
𝑧11 = −1.3311𝑧011 = 3𝑥12 − 𝑦12𝑧1ˈ − 2𝑦 𝑦 ˈ𝑧 = −1.0244
1 1 1
Using (5),
10
RUNGE-KUTTA METHOD FOR SOLVING SECOND ORDER ODE
Any differential equation of second or Higher order differential equations are best treated by
transforming the given equation into a system of first order simultaneous differential equations
which can be solved as usual.
Equations (1) and (2) constitute the equivalent system of simultaneous equations where
𝑓1(𝑥, 𝑦, 𝑧) = 𝑧, 𝑓2(𝑥, 𝑦, 𝑧) = 𝑓(𝑥, 𝑦, 𝑧) given. Also 𝑦(0) and 𝑧(0) ae given.
Example: Solve 𝑦′′ − 𝑥(𝑦′)2 + 𝑦2 = 0 using R-K method for 𝑥 = 0.2 given 𝑦(0) = 1, 𝑦′(0) = 0
taking ℎ = 0.2.
By R-K algorithm,
11
ℎ , 𝑦 +𝑘1 , 𝑧 + 𝑙1) ( ) ( )
𝑙2 = ℎ𝑓2 (𝑥0 +
2 0 2 0 2 = 0.2 𝑓2 0.1,1, −0.1 = −0.1998
ℎ , 𝑦 +𝑘2 , 𝑧 + 𝑙2 ( ) ( )
𝑘3 = ℎ𝑓1 (𝑥0 + 0
2 0 2 ) = 0.2 𝑓1 0.1,0.99, −0.0999 = −0.01998
2
ℎ , 𝑦 +𝑘2 , 𝑧 + 𝑙2 ( ) ( )
𝑙3 = ℎ𝑓2 (𝑥0 + ) = 0.2 𝑓1 0.1,0.99, −0.0999 = −0.1958
2 0 2 0 2
𝑘4 = ℎ𝑓1(𝑥0 + ℎ, 𝑦0 + 𝑘3, 𝑧0 + 𝑙3) = (0.2)𝑓1(0.2,0.98, −0.1958) = −0.0392
1
∴ 𝑦1 = 𝑦0 + (𝑘1 + 2𝑘2 + 2𝑘3 + 𝑘4)
6
1
i.e., 𝑦(0.2) = 1 + [0 + 2(−0.02 − 0.01998) − 0.0392] = 0.98014
6
1. The function values corresponding to distinct values of the argument are known but the
function is unknown. For example we may know values of f(x) at various values of x,say
𝑥𝑖 ,𝑖 = 1,2,................... 𝑛 in a tabulated form.
Differentating, eq(1)
12
(𝑑𝑦) = (𝑑𝑦) =1 1 2 1 3 1 4
13
𝑑2𝑦 𝑑2𝑦 1 [∆2 𝑦0 − ∆3𝑦0 + 11
( ) =( ) = 2 ∆ 4 𝑦0 + ⋯ … … … . ]
𝑑𝑥2 𝑑𝑥2 ℎ 12
𝑥=𝑥0 𝑝=0
Differentating,eq(1)
(𝑑𝑦) = (𝑑𝑦) =1 1 2 1 3 1 4
𝑑2𝑦 𝑑2𝑦 1 11
( ) =( ) = [∇2𝑦𝑛 + ∇3𝑦𝑛 + ∇2𝑦𝑛 + ⋯ … … … . ]
𝑑𝑥 2 ℎ2 12
𝑑𝑥2 𝑥=𝑥0 𝑝=0
1. Find the first and second derivatives of the function tabulated below at the point x=1891
Population in
46 66 81 93 101
thousands
x y
1891 46
20
1901 66 -5
15 2
1911 81 -3 -3
12 -1
14
1921 93 -4
8
15
1931 101
(𝑑𝑦) = (𝑑𝑦) =1 1 2 1 3 1 4
𝑑2𝑦 𝑑2𝑦 1 11
( ) =( ) = [∆2𝑦0 − ∆3𝑦0 + ∆4𝑦0 + ⋯ … … … . ]
𝑑𝑥2 𝑑𝑥 2 ℎ2 12
𝑥=𝑥0 𝑝=0
1 11
= [(−5) − (2) + (−3) + ⋯ … … … . ]
102 12
=-0.0975
2. Find the first and second derivatives of the function tabulated below at the point x=1931
Population in
46 66 81 93 101
thousands
1891 46
20
1901 66 -5
15 2
1911 81 -3 -3
16
12 -1
1921 93 -4
17
8
1931 101
(𝑑𝑦) = (𝑑𝑦) =1 1 2 1 3 1 4
1 1 1 1
= [8 + (−4) + (−1) + (−3) + ⋯ … … … . ]
10 2 3 4
=0.4916
𝑑2𝑦 𝑑2𝑦 1 11
( ) =( ) = [∇2𝑦𝑛 + ∇3𝑦𝑛 + ∇2𝑦𝑛 + ⋯ … … … . ]
𝑑𝑥2 𝑥=𝑥0
𝑑𝑥2 𝑝=0
ℎ2 12
1 11
= [(−4) + (−1) + (−3) + ⋯ … … … . ]
102 12
=-0.0775
18
UNIT II
LAPLACE
TRANSFORMS
19
LAPLACE TRANSFORMS
INTRODUCTION
USES
Particular Solution is obtained without first determining the general solution.
Non-Homogeneous Equations are solved without obtaining the complementary
integral.
L.T is applicable not only to continuous functions but also to piecewise continuous
functions, complicated periodic functions, step functions and impulse functions.
APPLICATIONS:
L.T is very useful in obtaining solution of linear differential equations, both ordinary
and partial, solution of system of simultaneous differential equations, solution of
integral equations, solution of linear difference equations and in the evaluation of
definite integrals.
DEFINITION:
Let f (t) be a function of‘t’ defined for all positive values of t. Then Laplace
transforms of f (t) is denoted by L {f (t)} is defined by
provided that the integral exists. Here the parameter‘s’ is a real (or) complex number.
symbol ‘L’ which transform f(t) into f s is called the Laplace transform operator. The
symbol ‘L-1’ which transforms 𝑓(̅ s) to f (t) can be called the inverse Laplace transform
operator.
Conditions for Laplace Transforms
20
lt est f t a
Exponential order: A function f (t) is said to be of exponential order ‘a’ If t
finite quantity.
Ex: (i). The function t2 is of exponential order
3
(ii). The function et is not of exponential order (which is not finite quantity)
Piece – wise Continuous function: A function f (t) is said to be piece-wise continuous over
the closed interval [a,b] if it is defined on that interval and is such that the interval can be
divided into a finite number of sub intervals, in each of which f (t) is continuous and has both
right and left hand limits at every end point of the subinterval.
Sufficient conditions for the existence of the Laplace transform of a function:
The function f (t) must satisfy the following conditions for the existence of the L.T.
(i).The function f(t) must be piece-wise continuous (or sectionally continuous) in any limited
interval 0 a t b .
(ii).The function f (t) is of exponential order.
Laplace Transforms of standard functions:
1
1. Prove that L1
s
Proof: By definition
e st
st e e0 1
L1 e .1dt 0 s if s 0
0 s 0 s s
L 1 e 0
2. Prove that Lt 1s2
Proof: By definition
e st e st
0 s s 0
e st e st 1
t. 0
s
s2
s
2
n!
3. Prove that L tn where n is a +ve integer
sn1
e st
e st
21
Proof: By definition Ltn
est .t ndt tn.
n.t .
n1
dt
0 s 0 0 s
n
00 e st t n1dt
s 0
22
L t n1
n
s
n 1
Similarly L t
n1
s
L t n2
L t n3
n2
L t n2
s
By repeatedly applying this, we get
n n 1 n 2 2 1
Ltn . . ..... . Lt
nn
s s s s s
n! n! 1 n!
L1 .
sn sn s sn1
n 1
i.e., L tn
n!
n 1 n!
sn1 sn1
Def: If n>0 then Gamma function is defined by n e x x n 1dx
0
We have L t n e st .t n dt
s n1 0
When
t , x
1
.n 1
Ltn sn1
L t n n!
sn1
Note: The following are some important properties of the Gamma function.
1. n 1 n.nif n 0
23
3. 1 1, 12
24
2 11 1!
3 2 2 2!
4 3 3 3! and so on.
1
4. Prove that L eat
sa
Proof: By definition,
0 0
esat
s a 0
e e0 1 if s a
a
5. Prove that Lsinh at
s2 a2
Le Leat
1 at
Proof: L sinh at L eat eat
2
2
1 1 1 1 s a s a 2a a
2 s a s a 2 s 2 a 2 2 s 2 a 2 s 2 a 2
s
6. Prove that Lcosh at
s a2
2
2
1 1 1
Le L eat
1 at
2
2
s a s a
1 s a s a 2s s
2 s a
2 2
2 s a s a2
2 2 2
a
7. Prove that Lsin at
s2 a2
25
0
L sin at est sin atdt
Proof: By definition,
26
eax
e st
a
s2 a2
s
8. Prove that Lcos at
s2 a2
1
Proof: We know that L eat
sa
Replace ‘a’ by ‘ia’ we get
s ia
L eiat
1
s ia s ias ia
s ia
i.e., Lcosat i sin at
s2 a2
Equating the real and imaginary parts on both sides, we have
s a
Lcos at and Lsin at 2 2
s a
2 2
s a
Solved Problems :
1. Find the Laplace transforms of (t2 1)2
Sol: Here f(t) (t2 1)2 t4 2t2 1
L{(t2 + 1)2 } = L{t4 + 2 t2 + 1} = L{t4 }+ 2L{t2 }+ L{1}
4! 2. 2! 1 4! 2. 2! 1
s41 s3 s s5 s3 s
1
24
4
1
(24 4s2 s4 )
s5 s3 s s5
eat 1
2. Find the Laplace transform of L
a
e at 1 1
at
1 at
a s a s s(s a)
27
3. Find the Laplace transform of Sin2tcost
1 1
Sol: W.K.T sin 2t cos t [2 sin 2t cos t] [sin 3t sin t]
2 2
1 1
L{sin 2t cos t} L [sin 3t sin t] Lsin 3t Lsin t
2
2
28
1
1 3 2(s2 3)
2 s2 9 s 2 1 (s2 1)(s2 9)
1 3
L{cos3 3t} = L{cos 9t}+ L{cos 3t}
4 4
1 s3
∴ = . . s
4 s2 81 4 s2 9
s 1 3 s s2 63
= 2
4 s 81 s2 9 s2 9s 2 81
1 2 s 2 2s 4
s s2 4
s s2 4
7. Find the Laplace transforms of cost cos2t cos3t
1
Sol: cos t cos 2t cos 3t .cos t 2.cos 2t.cos 3t
2
29
1 1
= cos t[cos 5t + cos t] = [cos t cos 5t + cos2 t]
2 2
1 1
2
cos t cos 5t 2 cos2 t cos 6t cos 4t 1 cos 2t
4 4
1
= [1 cos 2t cos 4t cos 6t]
4
30
1
L{cos t cos 2t cos 3t} L{1 cos 2t cos 4t cos 6t}
4
1
= [L{1} L{cos 2t} L{cos 4t} L{cos 6t}]
4
= 1 1 s
s
s
4 s s2 4 s 2 16 s 2 36
8. Find L.T. of Sin2t
1 cos 2t
Sol: L{sin2 t} L
2
1 1 1 s
[L{1} L{cos 2t}]
2 2 s s2 4
9. Find L(√𝒕)
1
1
Sol: L t L t 2
1 2
where n is not an integer
1
1
s 2
1 1
s2 2s 2
10. Find 𝑳 {𝒔𝒊𝒏(𝑚𝒕 + 𝑎)}, where a constant is
i.e. (i). L cf t c.L f t (ii).L f t g t L f t Lg t Where ‘c’ is
constant
Proof: (i) By definition
Lcf t estcf t dt c
est f t dt cL f t
0 0
(ii) By definition
31
L f t g t est f t g t dt
0
32
Similarly the inverse transforms of the sum of two or more functions of ‘s’ is the sum of the
inverse transforms of the separate functions.
Thus, L1 f s g s L1 f s L1 g s f t g t
Corollary: Lc1 f t c2g t c1L f t c2Lg t , where c1, c2 are constants
a. e st
f t dt b e g t dt c esth t dt
st
0 0 0
du
Put at u dt
a
s .u
L{ f (at)} e
su
a
f (u)
du
1. e
a f u du . f
1
0 a a 0 a
Solved Problems :
1. Find 𝑳{𝐬𝐢𝐧𝐡 𝟑𝒕}
1
Sol: 𝐿{sinh 𝑡} = = 𝑓(𝑠)
𝑠2−1
33
1
∴ 𝐿{sinh 3𝑡} = 𝑓(𝑠⁄ )(Change of scale property)
3 3
3 s 2 1 s2 9
1
3
1 3
34
2. Find 𝑳{𝐜𝐨𝐬 𝟕𝒕}
𝑠
Sol: 𝐿{cos 𝑡} =
𝑠2+1
= 𝑓( 𝑠) (𝑠𝑎𝑦)
1
𝐿{cos 7𝑡} = 𝑓(𝑠⁄ ) (Change of scale property)
7 7
1 𝑠⁄
𝐿{cos 7𝑡} = 7 𝑠
7( 2 = 𝑠2+49
𝑠
⁄7) +1
at
L{e f (t)} esteat f (t)dt
0
esat f t dt
0
eut f t dt whereu s a
0
= f (u) f s a
- at
Note: Using the above property, we have L{e f (t)} = f (s+ a)
b b
2. L{eat sin bt} L(sinbt)
(s a)2 b2 s2 b2
s a s
3. L{eat cos bt} L(cosbt)
35
(s a)2 b2 s2 b2
sa s
5. L{eatcosh bt} L(coshbt)
(s a) b
2 2
s2 b2
Solved Problems :
1. Find the Laplace Transforms of t3 e3t
Sol: Since
36
3!
L{t3} =
s4
Now applying first shifting theorem, we get
37
3!
L{t3 e- 3t} = (s + 3)4
= 1 {𝐿[𝑒2𝑡] + 𝐿[𝑒2𝑡𝑐𝑜𝑠2𝑡]}
2
= 1 ( 1 )+ {𝐿[𝑐𝑜𝑠2𝑡]}
1
2 𝑠−2 2 𝑠→𝑠−2
= 1 ( 1 )+ 1 𝑠−2
2 𝑠−2 2 (𝑠−2)2+22
= 1 ( 1 )+ 1 𝑠−2
2 𝑠−2 2 (𝑠2−4𝑠+8)
= 𝑒−𝑎𝑠𝐿{𝑓(𝑡)} = 𝑒−𝑎𝑠𝑓(𝑠)
38
∞
𝐿{𝐹(𝑡 − 𝑎)𝐻(𝑡 − 𝑎)} = ∫ 𝑒 𝐹(𝑡 − 𝑎)𝐻(𝑡 − 𝑎)𝑑𝑡 → (1)
−𝑠𝑡
Put t-a=u so that dt= du and also when t=0, u=-a when t → , u→
∞
Then 𝐿{𝐹(𝑡 − 𝑎)𝐻(𝑡 − 𝑎)} = ∫𝑎 𝑒−𝑠(𝑢+𝑎) 𝐹(𝑢)𝐻(𝑢)𝑑𝑢. [𝑏𝑦 𝑒𝑞(1)]
39
0
es(ua) F u H u du es(ua)F u H u du
a 0
∞
0 𝑒−𝑠(𝑢+𝑎) 𝐹(𝑢). 0𝑑𝑢 + 𝑒−𝑠(𝑢+𝑎) 𝐹(𝑢). 1𝑑𝑢
= ∫−𝑎 ∫0
= 𝑒−𝑎𝑠𝐿{𝐹(𝑡)} = 𝑒−𝑎𝑠𝑓(𝑠)
Solved Problems
cos t if t
1. Find the L.T. of g (t) when g t 3 3
0 if t 3
𝑠
∴ 𝐿{𝐹(𝑡)} = 𝐿{𝑐𝑜𝑠𝑡} = = 𝑓(𝑠)
𝑠2+1
𝑠 +1 𝑠 +1
41
Multiplication by‘t’:
−𝒅
Theorem: If 𝑳{𝒇(𝒕)} = 𝒇(𝒔) 𝒕𝒉𝒆𝒏 𝑳{𝒕𝒇(𝒕)} = 𝒇(𝒔)
𝒅𝒔
f s e st f t dt
ds ds
0
ds 0 s
test f t dt
0
∞
= − ∫0 𝑒−𝑠𝑡{𝑡𝑓(𝑡)}𝑑𝑡 = − 𝐿{𝑡𝑓(𝑡)}
−𝑑
Thus 𝐿{𝑡𝑓(𝑡)} = 𝑓(𝑠)
𝑑𝑠
𝑑𝑛
∴ 𝐿{𝑡𝑛𝑓(𝑡)} = (−1)𝑛
𝑑𝑠𝑛 = 𝑓(𝑠)
𝑑
{
𝑏 𝑓(𝑥, 𝛼)𝑑𝑥} = 𝑏 𝜕 𝑓(𝑥, 𝛼)𝑑𝑥
∫𝑎 ∫𝑎 𝜕𝛼
𝑑𝛼
2. Find t2sin at
𝑎
Sol: Since 𝐿{𝑠𝑖𝑛 𝑎𝑡} =
𝑠2+𝑎 2
2
𝐿{𝑡2. 𝑠𝑖𝑛 𝑎𝑡} = (−1) 2 𝑑 (
𝑎
)
𝑑𝑠2 𝑠 2+𝑎 2
d 2as 2a 3s2 a2
=
s a
3
ds s 2 a 2 2
2 2
42
3. Find L.T of tet sin 3t
43
3
Sol: Since 𝐿{𝑠𝑖𝑛 3𝑡} =
𝑠2+32
−𝑑 3 6𝑠
∴ 𝐿{𝑡𝑠𝑖𝑛 3𝑡} = [ ]= Now using the shifting property, we get
𝑑𝑠 𝑠 2+32 (𝑠2+9)2
6(𝑠+1)
𝐿{𝑡𝑒−𝑡𝑠𝑖𝑛 3𝑡} = = 6(𝑠+1)
((𝑠+1)2+9)2 (𝑠2+2𝑠+10)2
L e2t sin 3t 3
3
s 2 9 s2 4s 13
2
𝑑 3
𝐿{𝑡𝑒2𝑡𝑠𝑖𝑛 3𝑡} = (−1) [ ] = (−1) [ 0−3(2𝑠−4)
]
𝑑𝑠 𝑠 2−4𝑠+13 (𝑠2−4𝑠+13)2
32s 4 6s 2
=
s 2 4s 13 s 2 4s 13
2 2
1
d 1 2 d
2
1
2
21 1 ds s 2
s ds s 1
1 2 d 1
2
s s 1 ds s 2 2
1
2 2
s s 12 s 2
3
44
=1 [𝐿{𝑒𝑎𝑡 sin 𝑎𝑡} + 𝐿{𝑒−𝑎𝑡 sin 𝑎𝑡}]
2
1 a a
2 s a 2 a 2 s a 2 a 2
45
f t t 1 , t 1
2
0 1
∞ ∞ ∞
=∫ 𝑒−𝑠𝑡 (𝑡 − 1)2 𝑑𝑡 = [(𝑡 − 1) 2 𝑒−𝑠𝑡 ] − ∫ 2(𝑡 − 1) 𝑒−𝑠𝑡 𝑑𝑡
1 −𝑠 1 1 −𝑠
2
0 e st t 1 dt
s 1
2
e st
e st
t 1
s s
1 s dt
1
2 1
0 est dt 2 est 2 e st
0 2
2 ∞
= 𝑒−𝑠𝑡. 0𝑑𝑡 + 𝑒−𝑠𝑡 3𝑑𝑡
∫0 ∫2
3 3
est 0 e2s
0 est 3dt
2 s 2 s
3 2 s
e
s
10. Find 𝑳{𝒕 𝒄𝒐𝒔(𝒂𝒕 + 𝒃)}
Sol: 𝐿{𝑐𝑜𝑠(𝑎𝑡 + 𝑏)} = 𝐿{cos 𝑎𝑡 cos 𝑏 − sin 𝑎𝑡 sin 𝑏}
= cos 𝑏. 𝐿{cos 𝑎𝑡} − sin 𝑏 𝐿{sin 𝑎𝑡}
𝑠 𝑎
= cos 𝑏. − sin 𝑏.
𝑠2+𝑎 2 𝑠2+𝑎 2
46
−𝑑 𝑠 𝑎
𝐿{𝑡. 𝑐𝑜𝑠(𝑎𝑡 + 𝑏)} = [cos 𝑏. − sin 𝑏. ]
𝑑𝑠 𝑠2+𝑎 2 𝑠2+𝑎 2
47
1
s2 a2 cos b 2as sin b
2
s2 a2
2
Division by‘t’:
𝟏
Theorem: If 𝑳{𝒇(𝒕)} = 𝒇(𝒔) 𝒕𝒉𝒆𝒏 𝑳 { 𝒇(𝒕)} = ∫𝒔∞ 𝒇(𝒔)𝒅𝒔
𝒕
Proof: We have f s
0
est f t dt
f t e ds dt (
st t is independent of‘s’)
0 s
e st
f t dt
0 t
s
∞ 𝑓(𝑡) 1
= 𝑒−𝑠𝑡 𝑑𝑡(𝑜𝑟)𝐿 { 𝑓(𝑡)}
∫0 𝑡 𝑡
Solved Problems:
𝐬𝐢𝐧 𝒕
1. Find 𝑳 { }
𝒕
1
Sol: Since 𝐿{𝑠𝑖𝑛𝑡} = = 𝑓(𝑠)
𝑠2+1
= [𝑇𝑎𝑛−1𝑠]∞
𝑠 = 𝑇𝑎𝑛 ∞ − 𝑇𝑎𝑛 𝑠
−1 −1
48
2 Tan1s cot1 s
sin at
2. Find the L.T of
t
49
𝑎
Sol: Since 𝐿{sin 𝑎𝑡} =
𝑠2+𝑎2
= 𝑓( 𝑠)
Division by t, we have
sina 𝑡 ∞ ∞ 𝑎
𝐿{ } = ∫ 𝑓(𝑠)𝑑𝑠 = 𝑑𝑠
𝑡
∫𝑠
𝑠2+𝑎 2
𝑠
s
1
a. Tan1 as Tan1 Tan1
a s
a
2 Tan1 s a cot1
𝟏−𝐜𝐨𝐬 𝐚 𝒕
3. Evaluate 𝑳 { }
𝒕
1 𝑠
Sol: Since 𝐿{1 − cos a 𝑡} = 𝐿{1} − 𝐿{𝑐𝑜𝑠 𝑎𝑡} = −
𝑠 𝑠2+𝑎 2
𝐿 {1−cos a 𝑡} =
∞ 1
( − 𝑠 ) 𝑑𝑠
𝑡
∫𝑠 𝑠 𝑠2+𝑎 2
1
log s logs2 a2
2 s
1 1 s2
1 1 1 s2
2
2 l og 1 s2 log1 log s2 a2
a
s 2
1 1
s2 s2 2
l og log 2 log s2
2 s2 a2 s a2
𝟏−𝐜𝐨𝐬 𝒕
Note: 𝑳 { } = log
𝒕 s2 1 (Putting a=1 in the above problem)
𝒆−𝒂𝒕−𝒆−𝒃𝒕
Find 𝑳 {
4.
𝒕
}
𝑒− 𝑎𝑡−𝑒−𝑏𝑡
1
Sol: 𝐿{ }= ∞ 1 − ) 𝑑𝑠
(
∫𝑠 𝑠+𝑎 𝑠+𝑏
𝑡
s a
log s a log s b log
s
s s
50
a
1 s s a
lt log b log
s
1 s b
s
sb
log1 log(s a) log(s b) log
s a
51
5. Find L 1 cos t
t2
Sol: L 1 cos t L 1 1 cos t ...... 1
2 .
t t 1 t s
1 cos t
1
ds log s log s2 1
Now L s s s2 1
t 2
s
1 s2 1 s2 1 s2 1
log 2 log 2
2 s2 1 2
log
2 s 1 s
s
1 cos t 1 s2 1
s
L 2 log 2 ds
s
t 2
2 s s
1 1 1 1 s2 1
52
=0- log (𝑠+𝑎) = log (𝑠+𝑏)
𝑠+𝑏 𝑠+𝑎
53
If f 1 t be continuous and 𝐿{𝑓(𝑡)} = 𝑓(𝑠) 𝑡ℎ𝑒𝑛 𝐿{𝑓1(𝑡)} = 𝑠𝑓(𝑠) − 𝑓(0)
f t 0 s 0 e f t dt
e st st
= 𝑠𝑓(𝑠) − 𝑓(0)
The Laplace Transform of the second derivative f11(t) is similarly obtained.
∴ 𝐿{𝑓11(𝑡)} = 𝑠. 𝐿{𝑓1(𝑡)} − 𝑓1(0)
s. s f s f 0 f 1 0
s2 f s sf 0 f 1
0
∴ 𝐿{𝑓111(𝑡)} = 𝑠. 𝐿{𝑓11(𝑡)} − 𝑓11(0)
= 𝑠[𝑠2𝐿{𝑓(𝑡)} − 𝑠𝑓(0) − 𝑓1(0)] − 𝑓11(0)
= 𝑠3𝐿{𝑓(𝑡)} − 𝑠2𝑓(0) − 𝑠𝑓1(0) − 𝑓11(0)
Proceeding similarly, we have
𝐿{𝑓𝑛(𝑡)} = 𝑠𝑛𝐿{𝑓(𝑡)} − 𝑠𝑛−1𝑓(0) − 𝑠𝑛−2𝑓1(0) … … 𝑓𝑛−1(0)
Solved Problems:
Using the theorem on transforms of derivatives, find the Laplace Transform of the
following functions.
54
(i). eat (ii). cosat (iii). t sin at
55
(i). Let f t e Then f t a.e and f 0 1
at 1 at
(ii). 𝐿𝑒𝑡 𝑓(𝑡) = 𝑐𝑜𝑠𝑎𝑡 𝑡ℎ𝑒𝑛 𝑓1(𝑡) = −𝑎𝑠𝑖𝑛𝑎𝑡 𝑎𝑛𝑑 𝑓11(𝑡) = −𝑎2𝑐𝑜𝑠𝑎𝑡
∴ 𝐿{ 𝑓11(𝑡)} = 𝑠2𝐿{ 𝑓(𝑡)} − 𝑠. 𝑓(0)−𝑓1(0)
Now f 0 cos 0 1and f 1 0 a sin 0 0
0
Proof: Let g t f x dx
t
𝑑 𝑡
Then 𝑔1(𝑡) = [ 𝑓(𝑥) 𝑑𝑥] = 𝑓(𝑡) 𝑎𝑛𝑑 𝑔(0) = 0
𝑑𝑡
∫0
Taking Laplace Transform on both sides
𝐿{𝑔1(𝑡)} = 𝐿{𝑓(𝑡)}
But 𝐿{𝑔1(𝑡)} = 𝑠𝐿{𝑔(𝑡)} − 𝑔(0) = 𝑠𝐿{𝑔(𝑡)} − 0 [𝑆𝑖𝑛𝑐𝑒 𝑔(0) = 0]
∴ 𝐿{𝑔1(𝑡)} = 𝐿{𝑓(𝑡)}
1
⟹ 𝑠𝐿{𝑔(𝑡)} = 𝐿{𝑓(𝑡)} ⇒ 𝐿{𝑔(𝑡)} = 𝐿{𝑓(𝑡)}
𝑠
𝑡
𝐵𝑢𝑡 𝑔(𝑡) = ∫0 𝑓(𝑥) 𝑑𝑥
56
𝑓(𝑠)
∴ 𝐿 { 𝑡 𝑓(𝑥) 𝑑𝑥} =
∫
0 𝑠
Solved Problems:
t
1. Find the L.T of sin atdt
0
𝑎
Sol: L{sin 𝑎𝑡} = = 𝑓(𝑠)
𝑠2+𝑎 2
sin t
t
2. Find the L.T of dt
0 t
1
Sol: 𝐿{sin 𝑡} = 𝑎𝑙𝑠𝑜 𝑙𝑡 sin 𝑡 = 1 𝑒𝑥𝑖𝑠𝑡𝑠
𝑠2+1 𝑡
𝑡→0
sin 𝑡 ∞ ∞ 1
∴ 𝐿{ } = ∫ 𝐿{sin 𝑡}𝑑𝑠 = ∫ 𝑑𝑠
𝑡 𝑠 𝑠2+1
𝑠
𝑡 𝑠
We know that
L {sint} = 1
= 𝑓(̅𝑠)
𝑠2+1
∞ 1
𝑠𝑖𝑛𝑡 ∞ 𝑓(̅𝑠)𝑑𝑠 = 𝑑𝑠
L{ }=
𝑡
∫𝑠 ∫𝑠 𝑠2+1
=(𝑡𝑎𝑛−1𝑠)𝑠∞
𝜋
=𝑡𝑎𝑛−1∞ − 𝑡𝑎𝑛−1𝑠 = − 𝑡𝑎𝑛−1𝑠 = 𝑐𝑜𝑡−1𝑠
2
𝑠𝑖𝑛𝑡
∴ L{ } = 𝑐𝑜𝑡−1𝑠
𝑡
𝑡 𝑠𝑖𝑛𝑡 1
Hence L{ 𝑑𝑡} = 𝑐𝑜𝑡−1𝑠
∫
0 𝑡 𝑠
L [ 𝑒−𝑡
By First Shifting Theorem
57
𝑐𝑜𝑡 −1 𝑠
𝑡 𝑠𝑖𝑛𝑡 𝑑𝑡] =𝑓(̅𝑠 + 1) = ( )
∫0 𝑡 𝑠 𝑠→𝑠+1
58
𝑡𝑠𝑖𝑛𝑡 1
∴ L[ 𝑒−𝑡 ∫ 𝑑𝑡] = 𝑐𝑜𝑡−1(𝑠 + 1)
𝑡 𝑠+1
0
f t 1
est f t dt
a
L
1 e sa 0
Eg: sin x is a periodic function with period 2
i.e., sin x sin2 x sin4 x.............
Solved Problems:
1 if b t 2b
Find its Laplace Transform.
L f t
1
est f t dt
2b
Sol:
1 e 2bs 0
1 b est f t dt 2b st
e f t dt
1 e2bs 0 b
1 b estdt e stdt
2b
1 e 2bs 0 b
1 est b 2b
e st
1 e2bs s
0 s b
1
e sb 1 e 2bs e sb
s 1 e 2bs
L f t
1
1
2e e
sb 2bs
s 1 e 2bs
2. Find the L.T of the function f t sint if 0 t
2 2
0 if t where f t has period
59
2
Sol: Since f (t) is a periodic function with period
L f t
1
est f t dt
a
1 e sa
0
60
1 2
e f t dt
st
L f t
1 e
1
s 2
0
est .0dt
st
e sint dt 2
0
1 e st s sin t cos t
s2 2
0
b
at
eat
1
2s
1
2
s
2 e
s
.
1 e
Laplace Transform of Some special functions:
1. The Unit step function or Heaviside’s Unit functions:
0 𝑡<𝑎
It is defined as 𝑢(𝑡 − 𝑎) = {
1𝑡 >𝑎
Laplace Transform of unit step function:
𝑒−𝑎𝑠
To prove that 𝐿{𝑢(𝑡 − 𝑎)} =
𝑠
0 𝑡<𝑎
Proof: Unit step function is defined as 𝑢(𝑡 − 𝑎) = {
1𝑡>𝑎
∞
Then 𝐿{𝑢(𝑡 − 𝑎)} = ∫ 𝑒−𝑠𝑡𝑢(𝑡 − 𝑎) 𝑑𝑡
0
est u t a dt e st u t a dt
a
0 a
est .0dt est .1dt
a
0 a
1
st
e dt e st
.e eas eas
a
s a s s
𝑒−𝑎𝑠
∴ 𝐿{𝑢(𝑡 − 𝑎)} =
𝑠
61
1 0 ≤ 𝑡 ≤∈
Proof: By the definition 𝑓 (𝑡) = { ⁄∈
∈
∞0 𝑡 >∈
And Hence 𝐿{𝑓 (𝑡)} = 𝑒−𝑠𝑡𝑓 (𝑡) 𝑑𝑡
∈ ∫0 ∈
∈ ∞
= 𝑒−𝑠𝑡𝑓 (𝑡) 𝑑𝑡 + 𝑒−𝑠𝑡𝑓 (𝑡) 𝑑𝑡
∫0 ∈ ∫∈ ∈
62
∈ 1 ∞
= ∫ 𝑒−𝑠𝑡 𝑑𝑡 + 𝑒−𝑠𝑡. 0 𝑑𝑡
0 ∈
∫∈
∈ −𝑠∈ 0 1−𝑒−𝑠∈
1 𝑒−𝑠𝑡 1
= [ ] =− ⁄ −𝑒 ] =
∈ −𝑠 0 ∈ 𝑠 [𝑒 𝑠∈
1−𝑒−𝑠∈
∴ 𝐿{𝑓 (𝑡)} =
∈ 𝑠∈
∈→0 ∈ ∈→0 𝑠∈
4. G(t) 1 t a G1(a)
0
Solved Problems:
1. Prove that 𝑳{𝜹(𝒕 − 𝒂)} = 𝒆−𝒂𝒔
Sol: By Translation theorem
L{𝛿(𝑡 − 𝑎)} = 𝑒−𝑎𝑠𝐿{𝛿(𝑡)}
= 𝑒−𝑎𝑠 [sin 𝑐𝑒 𝐿{𝛿(𝑡)} = 1]
2. Evaluate ∫ 𝐜𝐨𝐬 𝟐𝒕 𝜹(𝒕 − 𝝅⁄ ) 𝒅𝒕
∞
𝟎 𝟑
Sol: By using property (3) then we get
∞
∫0 𝛿(𝑡 − 𝑎)𝐺(𝑡)𝑑𝑡 = 𝐺(𝑎)
Here 𝑎 = 𝜋⁄3 , 𝐺(𝑡) = cos 2𝑡
G a G 3 cos 2 3 1 2
∞
∴ ∫ cos 2𝑎𝑡 𝛿(𝑡 − 𝜋⁄ ) 𝑑𝑡 = cos 2 𝜋⁄ = −𝜋⁄
0 3 3 2
3. Evaluate e4t 1 t 2 dt
0
t aG t dt G1(a)
0
1
G t e4t and a 2
G1 t 4.e4t
63
G1 a G1 2 4.e8
is called the inverse Laplace transform of f s and is written as 𝑓(𝑡) = 𝐿−1{𝑓(𝑠)}
64
𝑠+𝑎 𝑠+𝑎
15. 𝐿{𝑒−𝑎𝑡 cos 𝑏𝑡} = 𝐿−1 { } = 𝑒−𝑎𝑡 cos 𝑏𝑡
(𝑠 + 𝑎)2 + 𝑏2 ( 𝑠 + 𝑎)2 + 𝑏2
16. 𝐿{𝑒𝑎𝑡 𝑓(𝑡)} = 𝑓(𝑠 − 𝑎) 𝐿−1{𝑓(𝑠 − 𝑎)} = 𝑒𝑎𝑡𝐿−1{𝑓(𝑠)}
17. 𝐿{𝑒−𝑎𝑡 𝑓(𝑡)} = 𝑓(𝑠 + 𝑎) 𝐿−1{𝑓(𝑠 + 𝑎)} = 𝑒−𝑎𝑡 𝑓(𝑡)𝑒−𝑎𝑡𝐿−1{𝑓(𝑠)}
Solved Problems :
s2 3s 4
1. Find the Inverse Laplace Transform of
s3
𝑠3−3𝑠+4
Sol: 𝐿−1 { } = 𝐿−1 {1⁄ − 3. 1⁄ + 4⁄ }
𝑠3 𝑠 𝑠2 𝑠3
L1 1 s 3L1 1 s L 4 s
2
1
3
t2
1 3t 4. 1 3t 2t 2
2!
2. Find the Inverse Laplace Transform of 𝒔+𝟐
𝒔𝟐−𝟒𝒔+𝟏𝟑
𝑠+2 𝑠+2
Sol: 𝐿−1 { } = 𝐿−1 { } = 𝐿−1 { 𝑠−2+4
}
𝑠2−4𝑠+13 (𝑠−2)2+9 (𝑠−2)2+32
𝑠−2 } +4. 𝐿 { 1
= 𝐿−1 { −1 }
(𝑠−2)2+32 (𝑠−2)2+32
4
e2t cos 3t e2t sin 3t
3
2s 5
3. Find the Inverse Laplace Transform of
s2 4
2𝑠−5 2𝑠 5
Sol: 𝐿−1 { } = 𝐿−1 { − }
𝑠2−4 𝑠2−4 𝑠2−4
= 2𝐿−1 { } − 5𝐿𝑠 { 1
−1 }
𝑠2−4 𝑠2−4
1
2.cosh 2t
5. sinh 2t
2
𝟐𝒔+𝟏
4. Find 𝑳−𝟏 { }
𝒔(𝒔+𝟏)
𝑠+𝑠+1 1 1
Sol: 𝐿−1 { } = 𝐿−1 { + }
𝑠(𝑠+1) 𝑠+1 𝑠
3 𝑠 8 1
= 𝐿−1 { } − 𝐿−1 { }
2 2
4 𝑠2+(5⁄ ) 4 𝑠2+(5⁄ )
2 2
3 5 8 2 5
.cos t
. sin t
4 2 4 5 2
3 5 4 5
cos t sin t
4 2 5 2
s
6. Find the Inverse Laplace Transform of
s a
2
𝑠 𝑠+𝑎−𝑎 𝑠−𝑎
Sol: 𝐿−1 { } = 𝐿 −1 { } = 𝑒−𝑎𝑡𝐿−1 { }
(𝑠+𝑎)2 (𝑠+𝑎)2 𝑠2
1 𝑎
= 𝑒−𝑎𝑡𝐿−1 { − }
𝑠 𝑠2
1 1
= 𝑒−𝑎𝑡 [𝐿−1 { } − 𝑎. 𝐿−1 { }]
𝑠 𝑠2
3s 7 A B
Sol: Let
s 2s 3 s 1 s 3
2
𝐴(𝑠 − 3) + 𝐵(𝑠 + 1) = 3𝑠 + 7
𝑝𝑢𝑡 𝑠 = 3, 4𝐵 = 16 ⇒ 𝐵 = 4
𝑝𝑢𝑡 𝑠 = −1, − 4𝐴 = 4 ⇒ 𝐴 = −1
3s 7 1 4
2
s 2s 3 s 1 s 3
3𝑠 + 7 −1 4 } = −1𝐿−1 { 1 } + 4𝐿−1 {1
𝐿−1 { }= 𝐿−1 { + }
𝒔
8. Find 𝑳−𝟏 { }
(𝒔+𝟏)𝟐(𝒔𝟐+𝟏)
Sol: 𝑠 𝐴 𝐵 𝐶𝑠+𝐷
= + +
(𝑠+1)2(𝑠2+1) 𝑠+1 (𝑠+1)2 𝑠2+1
66
Equating Co-efficient of s2, A+B+2C+D=0…….(2)
Equating Co-efficient of s, A+C+2D=1…….(3)
67
1
put s 1, 2B 1 B
2
1
Substituting (1) in (3) 2D 1 D
2
Substituting the values of B and D in (2)
1 1
i.e. 𝐴 − + 2𝐶 + = 0 ⇒ 𝐴 + 2𝐶 = 0, 𝑎𝑙𝑠𝑜 𝐴 + 𝐶 = 0 ⇒ 𝐴 = 0, 𝐶 = 0
2 2
1 1
s 2 2
s 1 s 2 1 s 1
2 2 s2 1
1
𝐿−1 { 𝑠 } = 1 [𝐿 { } − 𝐿 −1 { }]
(𝑠+1)2(𝑠2+1) 2 𝑠2+1 (𝑠+1)2
1 1
= [sin 𝑡−𝑒−𝑡𝐿−1 { }]
2 𝑠2
1
sin t tet
2
−𝟏 𝒔
9. Find 𝑳 { 𝒔𝟒+𝟒𝒂 }𝟒
𝐿{ } = 𝐿−1 { 4𝑎
} + 𝐿−1 { 4𝑎
}
𝑠4+4𝑎4 𝑠2+2𝑎𝑠+2𝑎2 𝑠2−2𝑎𝑠+2𝑎2
1 1 1 1
a.L1 .. L1
4 (s a)2 a2 4a (s a)2 a2
1 1
. .e at sin at 1 . 1 eat sin at
4a a 4a a
1
sin at eat eat 1 .sin at.2sinh at 1 sin at sinh at
4a2
4a2 2a2
𝟐
𝒔𝟐−𝟑𝒔+𝟒 𝟑(𝒔𝟐−𝟐)
68
10. Find i. 𝑳−𝟏 { 𝒔𝟑 } ii. 𝑳−𝟏 { 𝟐𝒔𝟓
}
Sol:
𝑠2−3𝑠+4 𝑠2 3𝑠 4 1 3 4
i. 𝐿−1 { } = 𝐿−1 { − + } = 𝐿−1 { − + }
𝑠3 𝑠3 𝑠3 𝑠3 𝑠 𝑠2 𝑠3
69
= 𝐿−1 {1} − 3𝐿−1 { 1 } + 4𝐿−1 { 1}
𝑠 𝑠2 𝑠3
𝑡2
= 1 − 3𝑡 + 4 = 1 − 3𝑡 + 2𝑡2
2!
2 2
3(𝑠2−2) 3 (𝑠2−2) 3 𝑠4−4𝑠 2+4
4 4 3 1 1 1
3 −1 1 −1 −1 −1
= 𝐿 { − 3 + 5} + {𝐿 { } − 4𝐿 { 3 } + 4𝐿 { 5 }}
2 𝑠 𝑠 𝑠 2 𝑠 𝑠 𝑠
3
t4 1
t2 4t4 3 2 4 2
2 2! 4!
1 4
t 6t 6
2 6 4
1 2t
−𝟏 𝒔
11. Find 𝑳 [ 𝒔𝟐−𝒂
Sol:
𝑠 2𝑠 1 −1 2𝑠 1 −1 1 1
𝐿−1 [ ] = 𝐿 −1 [ [ [ + ]
𝑠2 − 𝑎2 ]= 𝐿 ]= 𝐿 𝑠−𝑎 𝑠+𝑎
2(𝑠2 − 𝑎2) 2 (𝑠 − 𝑎)(𝑠 + 𝑎) 2
1 at
e eat cosh at
2
12. Find
4
L1
(s 1)(s 2) 1 1
1 4 1 4 L1 4[et e2t ]
Sol: L 4L 1
(s 1)(s 2) (s 1)(s 2)
s 1 s 2
13. Find L1 1
(s 1)2 (s2 4)
1 A B Cs D
Sol:
(s 1)2 (s2 4) s 1 (s 1)2 s2 4
2 1 2 3
A , B ,C ,D
25 5 25 25
1 2 L1 1 1 L1 1 2 L1 s 3 1 1
L1 L
1
(s 1) (s 4)
2 2
25 s 5 (s 1) 2 25 s 4
2 25 s2 4
2
2 t 1 1 1 t 1 1 cos 2t 3 . 1 sin 2t
e L e L
25 s 5 2 25 25 2
s
69
2 1 2 3
et et .t cos 2t sin 2t
25 5 25 50
1 s2 s 2
14. Find L
s(s 3)(s 2)
70
s2 s 2
A
B
C
Sol:
s s 3 s 2 s s3 s2
A 1 3 , B 4 15 ,C
1 s2 s 2 1 4 2
L
L
1
L1 L1 1 2
1 4
L
3s 15(s 3) 5(s 2)
1
4 e3t 2 e2t
3 15 5
1 s2 2s 4
15. Find L 2
(s 9)(s 5)
s2 2s 4 A Bs C
Sol:
= s2 9
(s2 9)(s 5) s 5
1 s 2s 4 1 s 2s 4
2 2
L 2 L 2
(s 9)(s 5) (s 9)(s 5)
31 3 83
L1 L1
L1
34(s 5) 34(s2 9) 34(s2 9)
31 83
e5t 3cos 3 t sin 3t
34 3
First Shifting Theorem:
f (s a) e f (t)
If L1 f (s) f (t), thenL1 at
71
Solved Problems :
1.
Find L1
1 1
L f (s 2)
(s 2)
2
72
e2t L1
1 1
Sol: L1
2
(s 2)2 16 s 16
e2t sin 4t
e2t . sin 4t
1
4 4
2. Find L1 3s 2
2
s 4s 20
Sol: L1 3s 2 L1 3s 2 L1 3(s 2) 4
2
s 4s 20 (s 2)2 16 (s 2)2 42
3L1
s2 1
4L1
(s 2)2 42 (s 2)2 42
3e2t L1
s
4e2t L1
1
2 2
s 42 s 42
1
3e2t cos 4t 4e2t sin 4t
4
s 3
3. Find L1
2
s 10s 29
Sol: L1 s3 s3 1 s 5 8
L1 L
2
s 10s 29 (s 5) 2 (s 5)2 22
2 2
5t 1
5t 1 s 8 e cos 2t
e L
2 2 8. sin 2t
s 2 2
Second shifting theorem:
f t a
If L1 f (s) f (t),then L1{eas f (s)} G(t) , where G(t) if t a
0 if t a
f t a
Proof: We have seen that G(t) if t a
0 if t a
L1 e as f (s) G t
Solved Problems :
1 es
1 1
e3s
73
1. Evaluate (i) L
(ii) L
(s 4)2
s 12
74
= L1 21 + L 1 es
1 es
1
Sol: (i) L s 1
2
s 1 s2
1
1
Since L1 sin t f (t) , say
s2 1
1 e
s
sin(t ) , if t
2
∴ By second Shifting theorem, we have L s 1 0 , if t
s
1 e
or L 2 =sin(t-π)H(t-π)= -sint. H(t-π)
s 1
1 1 es
Where H (t-3) is the Heaviside unit step function
Change of scale property:
t
If L f t f s , Then L1 f as a1 f a , a 0
75
Solved Problems :
1 8s
1. If L1 s = t sin t , find L1
2
(s 2 1)2 2 (4s 1)2
76
1 s = 1 t sin t ,
Sol: We have L
2
(s 1)2 2
Writing as for s,
t
1 as =1 1 t t
=
t .sin , by change of scale property.
L
2 2 2 . . sin 2
(a s 1) 2 a a a 2a a
t
Putting a=2, we get t 8s
2s = sin or L1 1 t
L1 = sin
2
(4s2 1)2 8 2 (4s 1)2 2 2
ddsn
n
L1 f (s) (1) n t n f (t)
Solved Problems :
2sinh t
t f t 2sinh t f t
77
t
s 1 2 sinh t
L1 log
s 1 t
78
1 s 1 et
1
=
Note: L log s t
L f (t) cot1(s)
d 1 1
Ltf (t) [cot1(s)
ds 1 s 2 1 s 2
1 1
tf (t) L sin t
2
s 1
sin t
f t
t
1
L1 cot1(s) sin t
t
2 2
(s 2s 2)
s 1
Sol: Let f (s) 2
(s 2s 2)2
s 1
2 2
s 1
= L1
79
2 2
[(s 1) 1]
s , by First Shifting Theorem
= et L1
2 2
(s 1)
80
t t
sin t et sin t 1 s t
e t L sin at
2 2 2
2 2 (s a ) 2a
Proof: we have seen that L f 1(t) s f (s) f (0)
L1 s f (s) f 1(t)
Note: L1 sn f (s) f n
(t),if f n (0) 0forn 1, 2,3 ..........n1
Solved Problems :
s s
1. Find (i) L1 (ii) L1
(s 2)2 (s 3)2
1
Sol: Let f (s) Then
(s 2)2
L1 f (s) L1
(s 2)2
1 2t 1 1
=e L 2
s
2t
= e .t f (t) ,
Clearly f (0) =0
1 s 1 s 1
Thus L = L s. =L s. f (s) = f 1(t)
(s 2)2 (s 2)2
d
= (te2t ) = t(2e 2t ) e 2t .1= e 2t (1 2 t)
dt
s 3t
Note: in the above problem put 2=3, then L1 = e (1 3t)
(s 3)2
Division by S:
81
s 0
82
t f s
Proof: We have seen that L f u du
s
0
f s t
L 1 f u du
s 0
f s t t
s(s a2 ) a
L 2 = sin atdt
0
1 cos at t 1 1
= = 2 (cosat1) = 2 (1 cosat)
a a a a
0
1 1 t
1
s (s a2 ) a2
Then L 2 2 = (1 cos at)dtdt
0
t
1 sin at 1 sin at
= t
= a2 t
0 a2
a a
1 1 sin at
L1 = t
2 2 2
s (s a ) a2 a
Convolution Definition:
If f (t) and g (t) are two functions defined for t 0 then the convolution of f (t) and g (t) is
t
f t * g t canalsobewrittenas f * g t
Properties:
The convolution operation * has the following properties
1. Commutative i.e. f * g t g * f t
2. Associative
83
f * g * h t f * g * h t
3. Distributive
f * g h t f * g t f * h t for t 0
84
Convolution Theorem: If f (t) and g(t) are functions defined for t 0 then
Proof: WKT L t 0 e st
f u g t u dudt
t
est f u g t u du dt
t
0 0
The double integral is considered within the region enclosed by the line
u=0 and u=t
On changing the order of integration, we get
L t e st f u g t u dt du
0 u
0 e su f u e
u
st u
g t u dt du
f u e
0 e su 0
sv
g v dv du put t u v
0 esu f u g s du g s 0 esu f u du g s. f s
L 1
g(s) L 1 s 1
sin at g(t) say
2 2
s a a
By convolution theorem, we have
s t
1
85
L1 2 2 2
cos au. .sin a(t u)du
(s a ) 0 a
86
t
1
2a
0
sin(au at au) sin(au at au)du
t
1
2a sin at sin(2au at)
du
0
t
1 1
sin at.u .cos(2au at)
2a 2a 0
1 1 1
t sin at cos2at at cosat
2a 2a 2a
1 1 1
t sin at cos at cos at
2a 2a 2a
t
sin at
2a
1 s2
2. Use convolution theorem to evaluate L 2 2
a )(s b )
2 2
(s
1 s2 1 s s
L .
Sol: L (s 2 a2 )(s2 b2 ) s2 a 2 s 2 b 2
s
s
Let f s and g s
s2 a2 s 2 b2
L1 g(s) L1
(s 2
s
cos bt g(t) say
2
b
By convolution theorem,
t
we have
s s
1
L 2 2
. 2 2 cos au.cosb(t u)du
s a s b 0
1t
cos(au bu bt) cos(au bu bt) du
20
1 sin(au bu bt) sin(au bu bt)
t
2 a b ab
0
87
Use convolution theorem to evaluate L1 1
3.
2
s(s 4)2
1 1 1 s
Sol: L1 2 2 L 2 . 2 2
s(s 4) s (s 4)
Let f s
1 and g s s
s2 4
2 2
s
So that L1 g(s) L1 2 t g(t) say
1
s
L 1
f (s) L 1 s
t.sin 2t
f (t) say 1
L
s ts in 2t
2 2 2 2
2 (s a )
(s 4) 4 2a
1 s t u
L 1 . 2 2 sin 2u(t u)du
2
s (s 4) 0 4
t
t 1t 2
4 u sin 2udu 4 u sin 2udu
0 0
t u 1 t
4 cos 2u sin 2u
2 4 0 t
1 u2 u 1
88
s 2
L s
L1 g(s) 1 1
sin t g(t) say
2
1
1 1 t
L1
. 2 f (u).g(t u) du (By Convolution theorem)
s 2 s 1 0
89
t
t
e
sin ue2udu
2t
0
t
e2u
2t
e 2 2 sin u cos u
2 1 0
1
e2t e2t 2sin t cos t 1
5
1
e2t 2sin t cos t
5
5. Find L1 1
(s 1)(s 2)
L1
1 1 1
Sol: 1 .
L (s 1)(s 2) s 1 s 2
1 1
Let f s and g s
s 1 s2
L
L1 g(s) 1 1 2t
e g(t) say
s 2
0 0 3 0 3
1
6. Find L1
2 2
s (s a2 )
L1 2 2
1 1 1 1
s (s a2 ) L s2 . s2 a2
Sol:
1
Let f s 2 and g s
1
s s a2
2
90
So that L1 f (s) L
1 1
2 t f (t) say
s
91
L1 g(s) L1
1
1
sinh at g(t) say
2 2
s a a
By using convolution theorem, we have
1 t 1
L 1 2 2 2 u. sinh a(t u)du
s (s a ) 0 a
t
1
a u sinh(at au)du
0
a a a2
1
a3
at sinh at
3. Using Convolution theorem, evaluate 𝑳−𝟏{ 𝒔 }
(𝑺+𝟐)(𝒔𝟐+𝟗)
1
𝑓(̅𝑠)= 1 = 𝐿{𝑓(𝑡)} ⇒ 𝑓(𝑡) = 𝐿−1 { } = 𝑒 −2𝑡 ----------------- (1)
𝑠+2 𝑠+2
𝑠
𝑔̅(𝑠)= 𝑠 = 𝐿{𝑔(𝑡)} ⇒ 𝑔(𝑡) = 𝐿−1 { } = 𝑐𝑜𝑠3𝑡----------------- (2)
𝑠2+32 𝑠2+32
92
2𝑒−2𝑡
= 1 [𝑒−2𝑡(2𝑐𝑜𝑠3𝑡 − 3𝑠𝑖𝑛3𝑡)] −
13 13
93
1. Step1: Take the Laplace Transform on both the sides of the DE and then by using the
formula
L{f n (t)} snL{f(t)}sn1 f (0) sn1 f 1(0) sn2 f 2 (0) ............... f n1(0) and apply
given initial conditions. This gives an algebraic equation.
2. Step2: replace f (0), f 1(0) , f 2 (0) ,……… f n1(0) with the given initial conditions.
4. Step4: take the inverse Laplace transform on both sides this gives f as a function of t
which gives the solution of the given DE
Solved Problems :
1. Solve y111 2 y11 y1 2 y 0 using Laplace Transformation given that
L y111(t) 2L y11(t) L y1 2L y 0
s3L y(t) s2 y(0) sy1(0) y11(0) 2 s2L y(t) sy(0) y1(0)
sL y(t) y(0) 2L y(t) 0
s3 2s2 s 2 L y(t) s2 y(0) sy1(0) y11(0) 2sy(0) 2 y1(0) y(0)
0 0 6 2.0 2.0 0
s3 2s2 s 2 L y(t) 6
6 6
L y(t)
s3 2s2 s 2 (s 1)(s 1)(s 2)
A
B C
s 1 s 1 s 2
94
A B C 0
2A 2B C 6
3A B 6
3A B 0
6A 6 A 1
3A B 0 B 3A B 3
A B C 0 C A B 1 3 2
1 3 2
L y(t)
s 1 s 1 s 2
1 1 1
y(t) L1 3.L1 2.L1 = et 3et 2.e2t
s 1 s 1 s 2
Which is the required solution
L{ y11 (t) 3L y1 (t) 2L y(t) 4L t L e 3t
4 1
s 2 L{ y(t) sy(0) y1 (0) 3 sL{ y(t) y(0) 2L{ y(t)
s2 s 3
4 1
(s2 3s 2)L{y(t) s4
s 2
s3
s (s 3)
s (s 3)(s 3s 2)
s (s 3)(s 1)(s 2)
95
s2 (s 3)(s 1)(s 2) s2 s 3 s 1 s2
96
( As B)(s 1)(s 2)(s 3) C(s2 )(s 1)(s 2) D(s2 )(s 2)(s 3) E(s2 )(s 1)(s 3)
s2 (s 3)(s 1)(s 2)
s4 7s3 13s2 4s 12 ( As B)(s3 6s2 11s 6)
C(s2 )(s2 3s 2) D(s2 )(s2 5s 6) E.s2 (s2 4s 3)
6 A B 3C 5D 4E 7 .........................(2)
1
put s 1, 2D 1 D
2
put s 2, 4E 8 E 2
1
put s 3,18C 9 C
2
1 1
fromeq.(1) A 1 2 A3
22
3 5
from eq.(2) B= -7+18+ 8 3 1 2
2 2
1 3 2 1
y(t) L 1 2
s
s2 2(s 3) 2(s 1) s 2
1 1
y t 3 2t e3t et 2.e2t
2 2
2 dy
3. Using Laplace Transform Solve d y 2 dy 3y sin t, given that y 0 when t=0
dt2 dt dt
2
d y dy
Sol: Given equation is 2 3y sin t.
dt dt
2
L y11 t 2L y1 t 3L y t L sin t
s 2 L y t sy 0 y1 0 2 sL y t y 0 3.L y t
1
s2 1
1
s2 2s 3 L y t
s2 1
L y t 1
s2 1s2 2s 3
y t L 1 1
2
s 1s 3 s 1
97
Now consider
98
A B Cs D
s2 1
1 s 1
s 1s 3 s 2 1 s3
As 3 s2 1 B s 1 s2 1 Cs D s 1s 3 1
1 1 1
s
1
y t L1 8 40 102 5
s 1 s 3 s 1
1 1 1 1 1 1 1 1 s 1 1 1
L L L 2 L 2
s 1 s3 s 1 s 1
8 40 10 5
1 1 1
y t et 1 e3t cos t sin t
8 40 10 5
dx
4. x sin t, x 0 2
Solve
dt
dx
Sol: Given equation is x sin t
dt
L x1 t L x t L sin t
s.L x t x 0 L x t
s2 2
s.L x t 2 L x t
s2 2
s 1L x t 2
s 2 2
99
2
x t L1
s 1 s s 1
2 2
1 1
1 2
s 2
1 L s 1s
2L
s 2
2 1 1 2
2e L s 1 s2 2 s2 2
t 1 1
t 1
2e
t
e cos t t
. sin
1
2
1 2
1
2
L x11 t n2L x t L a sin nt cos a cos nt sin
L x t a cos
n s
a sin
s2 n2
s 2 n2
2 2
a cos a sin 1
cos nt 2nx cos nt dx
t
t sin nt
2n 0 2 n
a cos t
cos n t 2x cos nt dx sin t sin nt
a
2n 0 2n
a cos 1 t at sin
.sin nt 2x x cos nt sin nt
2n 2n 0 2n
10
a cos sin nt at
cos cos nt sin sin nt
2n2 2n
10
a cos sin nt at
cos nt
2
2n 2n
6. Solve 𝒚𝟏𝟏 − 𝟒𝒚𝟏 + 𝟑𝒚 = 𝒆−𝒕 using L.T given that y (0) = y1 (0) = 1.
Sol: Given equation is 𝑦11 − 4𝑦1 + 3𝑦 = 𝑒−𝑡
Applying L.T on both sides we get 𝐿(𝑦11) − 4𝐿(𝑦1) + 3𝐿(𝑦) = 𝐿(𝑒−𝑡)
⇒ {s2L[y] –s y (0) – y1 (0)} – 4{s L[y] – y (0)} + 3L{y} = 1
𝑠+1
1 𝑠+5
L{y} = +
(𝑠+1)(𝑠2+4𝑠+3) (𝑠2+4𝑠+3)
1 𝑠+5
y =𝐿−1[ ] + 𝐿−1[ ]
(𝑠+1)(𝑠2+4𝑠+3) (𝑠2+4𝑠+3)
Let us consider
1 1
𝐿−1[ ] = 𝐿−1[ ]
(𝑠+1)(𝑠2+4𝑠+3) (𝑠+1)2(𝑠+3)
1 1
=
(𝑠 + 1)(𝑠2 + 4𝑠 + 3) (𝑠 + 1)2(𝑠 + 3)
𝐴 𝐵 𝐶
= + +
𝑠+1 (𝑆+1)2 𝑆+3
(−1 ) (1 ) (1)
= 𝑠+1 + (𝑆+1)2 +
4 2 4
𝑆+3
1 1
(− ) ( ) (1)
=𝐿−1[ 4
+ 2
+ 4
]
𝑠+1 (𝑆+1)2 𝑆+3
(−1 ) (1 ) (1)
=𝐿−1[ 4
+ 2
2
+ 4
]
𝑠+1
(𝑆+1) 𝑆+3
1 −1 1 1 −1 1 1 1
=− 𝐿 [ ] + 𝐿 [ ] + 𝐿−1[ ]
4 𝑠+1 2 (𝑆+1)2 4 𝑆+3
1 1 1 1
𝐿−1 [ −𝑡 −
𝑡 −3𝑡 − −−→ (1)
]=− 𝑒 + 𝑡𝑒 + 𝑒
(𝑠 + 1)(𝑠2 + 4𝑠 + 3) 4 2 4
3
−1 𝑠+5 −1 𝑠+2 ]+𝐿−1[ ]
𝐿 [ ]=𝐿 [
(𝑠2+4𝑠+3) ((𝑠+2)2−1) ((𝑠+2)2−1)
1
=𝒆−𝟐𝒕𝐿−1[ 𝑠 ]+𝐿−1 + 𝟑𝒆−𝟐𝒕𝐿−1[ ]
(𝑠2−1) (𝑠2−1)
𝑠+5
𝐿−1 [ ] = 𝒄𝒐𝒔𝒕+𝟑𝒆−𝟐𝒕 𝒔𝒊𝒏𝒕 − − −→ (2)
(𝑠2+4𝑠+3)
10
From (1) & (2)
1 1 1
∴ 𝑦 = − 𝑒−𝑡 + 𝑡𝑒−𝑡 + 𝑒−3𝑡+𝒆−𝟐𝒕𝒄𝒐𝒔𝒕+𝟑𝒆−𝟐𝒕𝒔𝒊𝒏𝒕
4 2 4
10
𝟐
𝒙
7. Solve 𝒅 + 𝟗𝒙 = 𝒄𝒐𝒔𝟐𝒕 using L.T. given x (0) =1, x (𝝅) = -1.
𝒅𝟐𝒕 𝟐
⇒(𝑠2 + 9)𝐿[𝑥]= 𝑠
+ (𝑠 + 𝑎)
𝑠2+4
𝑠 𝑎
𝐿[𝑥]= 𝑠
+ +
(𝑠2+4((𝑠2+9) (𝑠2+9) (𝑠2+9)
𝑠 𝑠 𝑎
X= 𝐿−1[ ] + 𝐿−1[ ] + 𝐿−1[ ]
(𝑠2+4((𝑠2+9) (𝑠2+9) (𝑠2+9)
𝑠 𝑎
= 1 𝐿−1[ 𝑠 − ] + 𝑐𝑜𝑠3𝑡 + 𝑠𝑖𝑛3𝑡
5 𝑠2+4 𝑠2+9 3
1 −1 𝑠 𝑎
=1 𝐿−1[ 𝑠 ]− 𝐿 [ ] + 𝑐𝑜𝑠3𝑡 + 𝑠𝑖𝑛3𝑡
5 𝑠2+4 5 𝑠2+9 3
1 𝑎
=1 𝑐𝑜𝑠2𝑡 − 𝑐𝑜𝑠3𝑡 + 𝑐𝑜𝑠3𝑡 + 𝑠𝑖𝑛3𝑡 ------------------→ (1)
5 5 3
Given x (𝜋) = -1.
2
1 𝜋 1 3𝜋 3𝜋 3𝜋 3𝜋
∴ −1 = 𝑐𝑜𝑠2 ( ) − 𝑐𝑜𝑠 + 𝑐𝑜𝑠 + 𝑐𝑜𝑠 + 𝑎𝑠𝑖𝑛
5 2 5 2 2 2 3 2
𝑎
⇒ -1= - 1 − 0 + 0 −
5 3
1
𝑎 =− +1
3 5
𝑎
=4
3 5
4 4
∴ x= 1 𝑐𝑜𝑠2𝑡 + 𝑐𝑜𝑠3𝑡 + 𝑠𝑖𝑛3𝑡 From (1)
5 5 5
𝟖. 𝑺𝒐𝒍𝒗𝒆(𝑫𝟑 − 𝟑𝑫𝟐 + 𝟑𝑫 − 𝟏)𝒚 = 𝒕𝟐𝒆𝒕 Using L.T given y (0) =1,𝒚𝟏 = 𝟎, 𝒚𝟏𝟏(𝟎) = −𝟐
Sol: Given 𝑦111 − 3𝑦11 + 3𝑦1 − 𝑦 = 𝑡2𝑒𝑡
𝐿[𝑦111] − 3𝐿[𝑦11] + 3𝐿[𝑦1] − 𝐿[𝑦] = 𝐿[𝑡2𝑒𝑡]
⇒ {𝑠3𝐿[𝑦] − 𝑠2𝑦(0) − 𝑠𝑦1(0) − 𝑦11(0)} − 3{𝑠2𝐿[𝑦] − 𝑠𝑦1(0) − 𝑦(0)} +
3{𝑠𝐿[𝑦] − 𝑦(0)} − 𝐿[𝑦] = 𝐿[𝑡2𝑒𝑡]
𝑑2
⇒ (𝑠3 − 3𝑠2 + 3𝑠 − 1)𝐿[𝑦] − 𝑠2 − 0 + 2 + 0 + 3(1) − 3(1) = (−1)2 𝐿[𝑒𝑡]
𝑑𝑠2
𝑑2 1
⇒ (𝑠 − 1)3L[y]-𝑠2 + 2 = ( )
𝑑𝑠2 𝑠−1
2
= (𝑠−1)3
(𝑠−1)3
⇒ (𝑠 − 1)3L[y] = 2
10
+𝑠2 − 2
10
2 𝑠2 2
𝐿[𝑦] = + −
(𝑠 − 1) 6 (𝑠 − 1)3 (𝑠 − 1)3
2 𝑠2 2
𝑦 = 𝐿−1[ ] + 𝐿−1[ ] − 𝐿−1[ ]
(𝑠−1)6 (𝑠−1)3 (𝑠−1)3
1 𝑠2 1
−1 ] + 𝐿−1[ ] − 2𝐿−1[ ]
= 2𝐿 [ (𝑠−1)3
(𝑠−1)6 (𝑠−1)3
1 𝑠2 1
=2𝑒𝑡𝐿 −1 [ ] + 𝐿 −1 − 2𝑒𝑡𝐿−1 [ ]
(𝑠)6 (𝑠−1)3 𝑠3
𝑡5 𝑡2 𝑠2
= 2𝑒𝑡 − 2𝑒𝑡 + 𝐿−1 [ ]
5! 2! (𝑠−1)3
𝑠2
Consider 𝐿−1 [ ]
(𝑠−1)3
𝑠2 𝑑2 1𝑑 𝑒𝑡 𝑡 2 1
𝐿−1 [( ] = ( ) = (2𝑡𝑒 𝑡 + 𝑡2𝑒𝑡) = (2𝑒𝑡 + 2𝑡𝑒𝑡 + 2𝑡𝑒𝑡 + 𝑡2𝑒𝑡)
𝑠 − 1 )3 𝑑𝑠2 2 2 𝑑𝑡 2
10
UNIT – III
ANALYTIC FUNCTIONS
Introduction: Complex analysis is the branch of mathematical analysis that investigates
functions of complex numbers. It is useful in many branches of mathematics, including
algebraic geometry, number theory, in physics, thermodynamics, and also in engineering fields
such as aerospace, mechanical and electrical engineering. Complex analysis is widely
applicable to two dimensional problems in physics. In this unit we discuss about limit,
differentiation and continuity of complex function and analyticity of a function and also
complex integration.
Definitions:
(or)
A complex number 𝑧 is defined as the ordered pair (𝑥, 𝑦) of real numbers. i.e., 𝑧 = (𝑥, 𝑦)
Argand plane: We have seen that complex numbers are represented by points (𝑥, 𝑦)𝜖 ℝ2 and
conversely. After this representation ℝ2 is called the Argand plane where (𝑥, 𝑦) = 𝑥 + 𝑖𝑦. After
this representation the 𝑥 and 𝑦 axes are called real and imaginary axes.
i.e.,|𝑧| = √𝑥2 + 𝑦2
10
Now x ≤ |𝑥| ≤ √𝑥2 + 𝑦2 , y ≤ |𝑦| ≤ √𝑥2 + 𝑦2
Properties of conjugate:
𝑧̿= z, ∀ 𝑧𝜖ℂ
𝑧̅ = 𝑧 ⟺ 𝑧 𝑖𝑠 𝑟𝑒𝑎𝑙
̅̅𝑧̅ = 𝑧̅1 + 𝑧̅2
̅𝑧̅̅+12
𝑧̅1̅2= ̅𝑧̅1̅𝑧̅2
z +𝑧̅ = 2 Rez ⇒ Rez = 𝑧+𝑧̅
2
z - 𝑧̅ = 2 Imgz ⇒ Imgz = 𝑧−𝑧̅
2𝑖
𝑧1̅ 𝑧1̅ , provided 𝑧 ≠ 0
=
𝑧2 ̅𝑧̅2̅ 2
Properties of modulus:
|𝑧|2 = 𝑧 𝑧̅
|𝑧1 + 𝑧2| ≤ |𝑧1| + |𝑧2|
||𝑧1| − |𝑧2|| ≤ |𝑧1 − 𝑧2| ≤ |𝑧1| + |𝑧2|
10
The Polar form or Exponential form of complex number:
10
Let 𝑧 = 𝑥 + 𝑖𝑦 𝑜𝑟 𝑧 = (𝑥, 𝑦) be complex number
𝑦
Here sin 𝜃 = ⟹ 𝑦 = 𝑟 sin 𝜃
𝑟
𝑥
cos 𝜃 = ⟹ 𝑥 = 𝑟 cos 𝜃
𝑟
∴ 𝑧 = 𝑥 + 𝑖𝑦 = 𝑟 𝑐𝑜𝑠 𝜃 + 𝑖 𝑟 𝑠𝑖𝑛 𝜃
𝑧 = 𝑟 (𝑐𝑜𝑠 𝜃 + 𝑖 𝑠𝑖𝑛 𝜃)
𝑦 𝑦
Here 𝑟 = |𝑧| and 𝑡𝑎𝑛𝜃 = ⟹ 𝜃 = tan−1 ( )
𝑥 𝑥
The Specific value of 𝑎𝑟𝑔𝑧, satisfying −𝜋 < 𝑎𝑟𝑔𝑧 < 𝜋 is called the principle value of
𝑎𝑟𝑔𝑧
For any two complex numbers 𝑧1,𝑧2 we have
𝑧1 𝑎𝑟𝑔𝑧1
𝑎𝑟𝑔 ( ) =
𝑧2 𝑎𝑟𝑔𝑧2
⟹ (𝑥 − 𝑎)2 + (𝑦 − 𝑏)2 = 𝑟2
|𝑧 − 𝑧0| = 𝑟 ⇔ 𝑧 − 𝑧0 = r𝑒𝑖𝜃, 0 ≤ 𝜃 ≤ 2𝜋
11
- 𝑧 = 𝑧0 + r𝑒𝑖𝜃, 0 ≤ 𝜃 ≤ 2𝜋
|𝑧| = 𝑟 represents a circle with centre at origin and radius 𝑟
|𝑧| = 𝑟 ⇔ Z = r𝑒𝑖𝜃 , 0 ≤ 𝜃 ≤ 2𝜋
i.e., for each pair of points in‘S’ there exists a path joining than which entirely lies
inside ‘S’.
(or)
Let S ⊆ ℂ, a rule 𝑓:S→ ℂ is called complex function if for every 𝑧 𝜖 S, there exist a
unique image 𝑓(𝑧) 𝜖 ℂ, we write it as 𝑓(𝑧) = 𝑤, for 𝑧 𝜖 S
11
Range: The set {𝑓(𝑧) /𝑧 𝜖 𝑆} is called the range of ‘𝑓’
Definition of limit of a complex function: Let 𝑓(𝑧) be a complex function, a complex number
𝑙𝜖ℂ is said to be a limit of a function 𝑓(𝑧) as 𝑧 tends to 𝑧0. If for every 𝜖 > 0 there exists a 𝛿 >
0 such that |𝑓(𝑧) − 𝑙| < 𝜖 whenever 0 < |𝑧 − 𝑧0| < 𝛿
Derivative of 𝒇(𝒛): Let 𝑓(𝑧) be a given function defined on a nbd of 𝑧0 then 𝑓(𝑧) is said to
𝑓(𝑧0+∆𝑧)−𝑓(𝑧0)
be differentiable at 𝑧 if lim exists and it is denoted by 𝑓′(𝑧 )
0 ∆𝑧 0
∆𝑧→0
Taking 𝑧 − 𝑧0 = ∆𝑧
Analytic function:A function 𝑓(𝑧) is said to be analytic at a point 𝑧0, if 𝑓(𝑧) is differentiable
at every point 𝑧 in the 𝜖 - neighbourhood of 𝑧0.
11
i.e., 𝑓′(𝑧) exist for all 𝑧 such that |𝑧 − 𝑧0| < 𝜖, where 𝜖 > 0 then 𝑓(𝑧) is said to be analytic
at 𝑧0.
11
Note:𝑓(𝑧) is analytic at 𝑧0 means
Definition: Let 𝐷 be a domain of complex numbers, if 𝑓(𝑧) is analytic at every 𝑧𝜖𝐷, then
𝑓(𝑧) is said to be analytic in the domain 𝐷.
Definition:If𝑓(𝑧) is analytic at every point 𝑧 on the complex plane then 𝑓(𝑧) is said to be an
entire function.
Statement:The necessary and sufficient condition for the derivative of the function
𝑓(𝑧) = 𝑢(𝑥, 𝑦) + 𝑖𝑣(𝑥, 𝑦) to exist for all values of 𝑧 in domain ℝ are
𝜕𝑢 𝜕𝑢 𝜕𝑣
(i) , , 𝜕𝑣 , are continuous functions of 𝑥 and 𝑦 in ℝ
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦
𝜕𝑢 𝜕𝑣
(ii) = , 𝜕𝑢 = - 𝜕𝑣
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
i.e., even though C-R equations are satisfied by 𝑓(𝑧) but 𝑓(𝑧) may not be differentiable.
Eg: 𝑓(𝑧) = √|𝑥𝑦| satisfies C-R equations at (0,0) but it is not differential at (0,0)
11
𝜕2 + 𝜕2
∇2= 𝜕𝑥2 𝜕𝑦2
𝜕2∅ + 𝜕 ∅
2
⟹ ∇2∅ = 2
𝜕𝑥 𝜕𝑦2
Result: If 𝑓(𝑧) = 𝑢(𝑥, 𝑦) + 𝑖𝑣(𝑥, 𝑦) is analytic in a domain D, then 𝑢 and 𝑣 satisfy laplace
equation.
Harmonic function:The function which satisfy the Laplace equation is called harmonic
function.
i.e., ∇2𝑢 = 0 𝑎𝑛𝑑 ∇2𝑣 = 0 and we have continuous second order partial derivatives in D.
Polar form of C-R equations:If𝑓(𝑧) = 𝑓(𝑟𝑒𝑖𝜃) = 𝑢(𝑟, 𝜃) + 𝑖𝑣(𝑟, 𝜃) and 𝑓(𝑧) is derivable
1 𝜕𝑣 1 𝜕𝑢
at 𝑧 = 𝑟 𝑒𝑖𝜃0 then 𝜕𝑢 = and 𝜕𝑣 = −
0 0 𝜕𝑟 𝑟 𝜕𝜃 𝜕𝑟 𝑟 𝜕𝜃
11
Problems:
11
1. Show that 𝒇(𝒛) = 𝒙𝒚 + 𝒊𝒚 is everywhere continuous but it is not analytic.
Given 𝑓(𝑧) = 𝑥𝑦 + 𝑖𝑦 = 𝑢 + 𝑖𝑣
⟹ 𝑢 = 𝑥𝑦, 𝑣 = 𝑦
𝜕𝑣
Now 𝜕𝑢 = y,𝜕𝑢 = 𝑥 ,𝜕𝑣 = 0 , =1
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦
𝜕𝑣 𝜕𝑢
Clearly 𝜕𝑢 ≠ and ≠ − 𝜕𝑣
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
2.Show that 𝒇(𝒛) = 𝒛 + 𝟐𝒛̅is not analytic anywhere in the complex plane?
But 𝑓(𝑧) = 𝑢 + 𝑖𝑣
Therefore 𝑢 = 3𝑥 and 𝑣 = −𝑦
𝜕𝑣
𝜕𝑢 = 3,𝜕𝑢 = 0 ,𝜕𝑣 = 0 , = −1
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦
𝜕𝑣 𝜕𝑢
Therefore 𝜕𝑢
≠ and ≠ − 𝜕𝑣
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
11
Therefore 𝑓(𝑧) is not analytic anywhere.
11
𝟐 𝝏𝟐 𝟐 , 𝟐
3.Prove that (𝝏 + )|𝑹𝒆𝒂𝒍 𝒇(𝒛)| = 2|𝒇 (𝒛)| where 𝒘 = 𝒇(𝒛) is analytic?
𝝏𝒙𝟐 𝝏𝒚𝟐
𝑓(𝑧) = 𝑢 + 𝑖𝑣
2 𝜕2
= (𝜕 + ) 𝑢2
𝜕𝑥2 𝜕𝑦2
𝜕 2𝑢 2 𝜕 2𝑢2
= + ……………….(1)
𝜕𝑥2 𝜕𝑦2
Now 𝜕 (𝑢2) = 2u 𝜕𝑢
𝜕𝑥 𝜕𝑥
𝜕 𝜕 𝜕 𝜕𝑢 𝜕2𝑢
𝜕2 (𝑢2) = [ (𝑢2)] = [2u ] 𝜕𝑢 2 ] ………..(2)
= 2 [( ) + 𝑢
𝜕𝑥2 𝜕𝑥 𝜕𝑥 𝜕𝑥 𝜕𝑥 𝜕𝑥 𝜕𝑥2
𝜕 𝜕 𝜕 𝜕𝑢 𝜕2𝑢
𝜕2 (𝑢2) = [ (𝑢2)] = [2u ] 𝜕𝑢 2 ] ………..(3)
= 2 [( ) + 𝑢
𝜕𝑦2 𝜕𝑦 𝜕𝑦 𝜕𝑦 𝜕𝑦 𝜕𝑦 𝜕𝑦2
𝜕𝑥2 𝜕𝑦2
) + (𝜕𝑥) + (𝜕𝑦 ) ]
𝜕2𝑢 𝜕2𝑢
i.e., 𝑢 satisfies Laplace equation⟹ + =0
Therefore L.H.S 𝜕𝑢 2 𝜕𝑢
11
𝜕𝑥2 𝜕𝑦2
= 2 [( 𝜕𝑥 ) + (𝜕𝑦 ) ]
12
Since 𝑓(𝑧) is analytic ⟹ it will satisfy C-R equations
𝜕𝑣
i.e., 𝜕𝑢 = , 𝜕𝑢 = - 𝜕𝑣
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
𝜕𝑢
Therefore 𝑓,(𝑧) = −i𝜕𝑢
𝜕𝑥 𝜕𝑦
𝜕𝑢) 2 𝜕𝑢 2
⟹ |𝑓,(𝑧)| = √( +( )
𝜕𝑥 𝜕𝑦
𝜕𝑢 2 𝜕𝑢 2
⟹ |𝑓 ,(𝑧)| 2 = ( ) +( )
𝜕𝑥 𝜕𝑦
𝜕𝑢 2 𝜕𝑢 2
Therefore R.H.S = 2 ( ) +( )
𝜕𝑥 𝜕𝑦
𝟐 𝝏𝟐
4. Show that ( 𝝏 + )𝒍𝒐𝒈|𝒇,(𝒛)|= 0, where 𝒇(𝒛) is an analytic function?
𝝏𝒙𝟐 𝝏𝒚𝟐
𝑧+
We know that 𝑧 + 𝑧̅ = 2𝑥 ⟹ 𝑥 =
2
𝑧 − 𝑧̅ 𝑖
𝑧 − ̅𝑧 = 2𝑖𝑦 ⟹ 𝑦 = = − (𝑧 − ̅𝑧)
2𝑖 2
𝜕
Now 𝜕𝑓 = 𝜕𝑓 (𝜕𝑥) + 𝜕𝑓 (𝜕𝑦) = 𝜕𝑓 (1) + 𝜕𝑓 (−𝑖) = 1 ( 𝜕 − 𝑖 )𝑓
𝜕𝑧 𝜕𝑥 𝜕𝑧 𝜕𝑦 𝜕𝑧 𝜕𝑥 2 𝜕𝑦 2 2 𝜕𝑥 𝜕𝑦
𝜕𝑓 𝜕𝑓 𝜕𝑥 𝜕
= + 𝜕𝑓 𝜕𝑦 = 𝜕𝑓 (1)+ 𝜕𝑓 (𝑖) = 1 ( 𝜕 + 𝑖 )𝑓
𝜕𝑧 𝜕𝑥 𝜕𝑧 𝜕𝑦 𝜕𝑧 𝜕𝑥 2 𝜕𝑦 2 2 𝜕𝑥 𝜕𝑦
2 2
𝜕2 𝑓 𝜕 1 𝜕 𝜕 1 𝜕
= 𝜕 𝜕𝑓
= 1
(𝜕 − 𝑖 ) . ( +𝑖 ) = (𝜕 + )f
12
2 𝜕2 𝜕2 …………….(1)
⟹(𝜕 + )=4
2 2 2
𝜕 𝜕
Hence ( 𝜕 + )𝑙𝑜𝑔|𝑓,(𝑧)| = 4 𝑙𝑜𝑔|𝑓,(𝑧)| [from equation (1)]
𝜕2 1
=4 . . 𝑙𝑜𝑔|𝑓,(𝑧)|2
𝜕𝑧𝜕𝑧 2
12
2 𝑙𝑜𝑔(𝑓 ′ (𝑧)̅𝑓′̅ ̅(̅𝑧̅))
=2 𝜕
𝜕𝑧𝜕𝑧
𝜕2
=2
𝜕𝑧𝜕𝑧 [log 𝑓 (𝑧) + log 𝑓 (𝑧)̅]
′ ′
𝜕 𝑓 ′′ (𝑧̅) 𝜕 𝑓 ′′ (𝑧)
= 2[ ′ ̅
+ ′ ]
𝜕𝑧 𝑓 (𝑧) 𝜕𝑧̅ 𝑓 (𝑧)
= 2 (0 + 0) = 0
5. Show that the function 𝒖(𝒙, 𝒚) = 𝒙𝟑 − 𝟑𝒙𝒚𝟐 is harmonic and find its harmonic
conjugate 𝒗(𝒙, 𝒚) and the analytic function 𝒇(𝒛) = 𝒖 + 𝒊𝒗?
𝜕2𝑢 2𝑢
= 6𝑥and𝜕 = −6𝑥
𝜕𝑥2 𝜕𝑦2
𝜕2𝑢 2𝑢
+𝜕 = 0
𝜕𝑥2 𝜕𝑦2
𝜕𝑢
= −6𝑥𝑦
𝜕𝑦
Let 𝑓(𝑧) = 𝑢 + 𝑖𝑣
𝜕𝑢 𝜕𝑣 𝜕𝑢
– 𝑖 𝜕𝑢 (from C-R equations , we have𝜕𝑢 = 𝜕𝑣
= , = − )
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
12
Now replace 𝑥 by 𝑧 and 𝑦 by 0
𝑓′(𝑧) = 3𝑧2
𝑓(𝑧) = 𝑧3 + 𝑐
= (𝑥 + 𝑖𝑦)3 + 𝑐
𝑓(𝑧) = 𝑢 + 𝑖𝑣
Let 𝑢(𝑥, 𝑦) be a harmonic function then there exists a harmonic conjugate 𝑣(𝑥, 𝑦) and
𝑢(𝑥, 𝑦) such that 𝑓(𝑧) = 𝑢 + 𝑖𝑣 is analytic
Problems:
𝑓′(𝑧) = 𝜕𝑢 +i 𝜕𝑣
𝜕𝑥 𝜕𝑥
𝜕𝑢 𝜕𝑢 𝜕𝑢 𝜕𝑣
= –i (from C-R equations , 𝑤𝑒 ℎ𝑎𝑣𝑒 = , 𝜕𝑢 = - 𝜕𝑣 )
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
𝜕𝑢
= 𝑒𝑥[(𝑥2 − 𝑦2) cos 𝑦 − 2𝑥𝑦 sin 𝑦] + 𝑒𝑥[2𝑥 cos 𝑦 − 2𝑦 sin 𝑦]
𝜕𝑥
𝜕𝑢
= 𝑒𝑥[−2𝑦 cos 𝑦 + (𝑥2 − 𝑦2)(− sin 𝑦) − 2𝑥 sin 𝑦 − 2𝑥𝑦 cos 𝑦]
𝜕𝑦
12
∴ 𝑓′(𝑧) = 𝑒𝑥[(𝑥2 − 𝑦2) cos 𝑦 − 2𝑥𝑦 sin 𝑦 + 2𝑥 cos 𝑦 − 2𝑦 sin 𝑦]
− 𝑖 𝑒𝑥[−2𝑦 cos 𝑦 + (𝑦2 − 𝑥2) sin 𝑦 − 2𝑥 sin 𝑦 − 2𝑥𝑦 cos 𝑦]
𝑓(𝑧) = 𝑒𝑧𝑧2 + 𝑐
= 𝑒𝑥[(𝑥2 − 𝑦2) cos 𝑦 − 2𝑥𝑦 sin 𝑦] + 𝑖𝑒𝑥[(𝑥2 − 𝑦2) sin 𝑦 + 2𝑥𝑦 cos 𝑦]
𝑓(𝑧) = 𝑢 + 𝑖𝑣
Where 𝑢 = 𝑒𝑥[(𝑥2 − 𝑦2) cos 𝑦 − 2𝑥𝑦 sin 𝑦] and 𝑣 = 𝑒𝑥[(𝑥2 − 𝑦2) sin 𝑦 + 2𝑥𝑦 cos 𝑦]
𝜕𝑢
= 𝑢 𝜃 = −𝑎 sin 𝜃, 𝜕𝑢 = 𝑢 𝑟 = 0
𝜕𝜃 𝜕𝑟
1 𝜕𝑣 1 𝜕𝑢
The Cauchy-Riemann equations in polar coordinates are 𝜕𝑢 = and 𝜕𝑣 = −
𝜕𝑟 𝑟 𝜕𝜃 𝜕𝑟 𝑟 𝜕𝜃
𝜕𝑣 𝜕𝑢
⟹𝑟 =− = 𝑎 sin 𝜃
𝜕𝑟 𝜕𝜃
1
Therefore 𝜕𝑣 = (𝑎 sin 𝜃)
𝜕𝑟 𝑟
12
𝑑𝑐 𝜕𝑢 𝑑𝑐
𝜕𝑣 = 𝑎 cos 𝜃 . log 𝑟 + =𝑟 = 𝑟.0 ⟹ = − 𝑎 cos 𝜃 . log 𝑟
𝜕𝜃 𝑑𝜃 𝜕𝑟 𝑑𝜃
12
Again integrating, we get
𝜕𝑣 𝜕𝑢 𝜕𝑣
i.e., 𝜕𝑢 = , = −
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
𝜕𝑢 𝜕𝑣
equation (3) ⟹ + = 𝑒𝑥(cos 𝑦 + sin 𝑦) .......................... (4)
𝜕𝑥 𝜕𝑥
𝜕𝑢
equation (2) + equation (4) ⟹ = 𝑒𝑥 cos 𝑦
𝜕𝑥
𝜕𝑣
equation (4) – equation (2) ⟹ = 𝑒𝑥 sin 𝑦
𝜕𝑥
𝜕𝑢 𝜕𝑣
Now 𝑓′(𝑧) = +𝑖 = 𝑒𝑥 cos 𝑦 + 𝑖𝑒𝑥 sin 𝑦
𝜕𝑥 𝜕𝑥
COMPLEX INTEGRATION
Introduction: Here we discuss the idea of line integral of a complex valued function 𝑓(𝑧) of
a complex variable 𝑧 in a simple way. It is intresting to note that some definite integrals
12
involving real variables can be evaluated simply using the integral theory of complex variables
and also we discuss Cauchy’s integral theorem and their applications.
Piecewise continuous : real valued function ‘ 𝑓 ’ is said to be piecewise continuous on [𝑎, 𝑏],
if [𝑎, 𝑏] can be divided into a finite number of subintervals in which the function is continuous.
Path:A continuous complex valued function ′𝛾′ defined on [𝑎, 𝑏] is called a path (or) arc in the
argand plane
Simple Path (Zordan Arc):A path is said to be simple if it does not intersect itself
Smooth Path:The path 𝛾(𝑡) = 𝑥(𝑡) + 𝑖 𝑦(𝑡), 𝑡𝜖(𝑎, 𝑏) is said to be smooth, if 𝑥′(𝑡), 𝑦′(𝑡)
are continuous and donot vanish simultaneously for any value of ‘𝑡’.
Piecewise smooth:A path 𝛾 is said to be piecewise smooth if thereexists a partition ‘P’ of[𝑎,
𝑏] thereexists 𝑎 = 𝑡1 < 𝑡2 < ⋯ … … < 𝑡𝑛−1 < 𝑡𝑛 = 𝑏 and 𝛾 is smooth on each subinterval
[𝑡𝑖−1, 𝑡𝑖], 1 ≤ 𝑖 ≤ 𝑛.
Note:For a piecewise smooth 𝛾′(𝑡) exist at 𝑡0,𝑡1,………… 𝑡𝑛also at 𝑡0,𝑡1, ................. 𝑡𝑛 the right and left
derivative exist but may not be equal at these points, we define 𝛾(𝑡𝑖) = 0, 1 ≤ 𝑖 ≤ 𝑛
Contour: A piecewise smooth curve is called contour. If a contour is closed and does not
intersect itself, it is called a closed contour.
Note: The length of the contour is sum of lengths of the smooth arcs constituting the contour.
12
Note: Re∫𝛾 𝑓(𝑧)𝑑𝑧 ≠ ∫𝛾 𝑅𝑒 𝑓(𝑧)𝑑𝑧
Line integral: Let 𝑓(𝑧) be a function of complex variable defined in a domain D. Let C be
an arc in the domain joining from 𝑧 = 𝛼to 𝑧 = 𝛽. Let C be defined by 𝑥=
𝑥(𝑡), 𝑦 = 𝑦(𝑡), 𝑎≤𝑡≤𝑏
Let 𝑥(𝑡), 𝑦(𝑡) be having continuous first order derivatives in [𝑎, 𝑏]. We define
Problems:
Sol: At 𝑥 = 0, 𝑦 = 3, 𝑡 = 0 𝑎𝑛𝑑 𝑎𝑡 𝑥 = 2, 𝑦 = 4, 𝑡 = 1
1 1
3 4 2 1 33
= [24𝑡 − 2𝑡 − 6𝑡 + 12𝑡] 1 = 8 + 12 − − 3 = .
3 4 2 0 2 2
2. Evaluate ∮(𝒙 + 𝒚)𝒅𝒙 + 𝒙𝟐𝒚𝒅𝒚 along 𝒚 = 𝟑𝒙 between (𝟎, 𝟎) 𝒂𝒏𝒅 (𝟑, 𝒂)?
Since 𝑦 = 3𝑥 ⟹ 𝑑𝑦 = 3𝑑𝑥
3 3
3
𝑥4 𝑥2
𝐼 = ∫(𝑥 + 3𝑥)𝑑𝑥 + 𝑥2(3𝑥)(3𝑑𝑥) = ∫(4𝑥 + 9𝑥3)𝑑𝑥 = (4.
2 + 9. 4 )
13
0 0 0
13
9
= 2(9) + (81)
4
729 801
= 18 + =
4 4
𝟏+𝒊 𝟐 𝟐
3. Evaluate ∫𝟎 (𝒙 − 𝒊𝒚)𝒅𝒛 along the paths (𝒊)𝒚 = 𝒙 (𝒊𝒊)𝒚 = 𝒙
1+𝑖 (1,1)
Therefore ∫0 (𝑥2 − 𝑖𝑦)𝑑𝑧 = ∫ (𝑥2 − 𝑖𝑦)(𝑑𝑥 + 𝑖𝑑𝑦)
(0,0)
1
Therefore ∫𝑂𝐵 (𝑥2 − 𝑖𝑦)𝑑𝑧 = ∫𝑥=0(𝑥2 − 𝑖𝑥)(𝑑𝑥 + 𝑖𝑑𝑥)
1 1
𝑥3 𝑥2
= (1 + 𝑖) ∫(𝑥2 − 𝑖𝑥)𝑑𝑥 = (1 + 𝑖) [ −𝑖 ]
3 2
0 0
= (1+i) [ 1 − 𝑖 ]
3 2
1
Therefore ∫𝑂𝑐 (𝑥2 − 𝑖𝑦)𝑑𝑧 = ∫𝑥=0(𝑥2 − 𝑖𝑥2)(𝑑𝑥 + 𝑖2𝑥𝑑𝑥)
= (1 − 𝑖) ∫ 𝑥2(1 + 2𝑖𝑥)𝑑𝑥
𝑥=𝑜
= (1 − 𝑖) ∫(𝑥2 + 2𝑖𝑥3)𝑑𝑥
𝑥=𝑜
3 𝑥4 1 1
= (1 − 𝑖) [𝑥 + 𝑖 ] = (1 − 𝑖) [ + 𝑖 ]
3 2 0 3 2
𝟐+𝒊
4. Evaluate ∫𝟏−𝒊 (𝟐𝒙 + 𝟏 + 𝒊𝒚)𝒅𝒛 along the straight line joining (𝟏, −𝒊) 𝒂𝒏𝒅 (𝟐, 𝒊)?
13
Sol: We have 𝑧 = 𝑥 + 𝑖𝑦 ⟹ 𝑑𝑧 = 𝑑𝑥 + 𝑖𝑑𝑦
Equation of the line joining the two points (1, −1) and (2,1) is
1 − (−1)
𝑦+1 = (𝑥 − 1)
2−1
13
i.e., 𝑦 + 1 = 2(𝑥 + 1) or 𝑦 = 2𝑥 − 3
⟹ 𝑑𝑧 = (1 + 2𝑖)𝑑𝑥
2+𝑖 2
Hence ∫1−𝑖 (2𝑥 + 1 + 𝑖𝑦)𝑑𝑧 = ∫ [2𝑥 + 1 + 𝑖(2𝑥 − 3)](1 + 2𝑖)𝑑𝑥
1
= (1 + 2𝑖)(4) = 4 + 8𝑖
The Cauchy-Goursat Theorem:If a function 𝑓(𝑧) is analytic at all points interior to and on
a simple closed curve C, then ∮ 𝑓(𝑧)𝑑𝑧 = 0.
Cauchy’s (Integral) Theorem: Let 𝑓(𝑧) = 𝑢(𝑥, 𝑦) + 𝑖𝑣(𝑥, 𝑦) be analytic on and within a
simple closed contour c and let 𝑓′(𝑧) be continuous there. Then
∮ 𝑓(𝑧)𝑑𝑧 = 0.
𝜕𝑣 𝜕𝑢 𝜕𝑢 𝜕𝑣
= ∬ [− − ] 𝑑𝑥𝑑𝑦 + 𝑖 ∬ [ − ] 𝑑𝑥𝑑𝑦 … … … (1)
𝜕𝑥 𝜕𝑦
𝑅 𝑅 𝜕𝑥 𝜕𝑦
Since 𝑓′(𝑧) is continuous, the four partial derivatives 𝜕𝑢 , 𝜕𝑢 , 𝜕𝑣 𝑎𝑛𝑑 𝜕𝑣 are also continuous
𝜕𝑥 𝜕𝑦 𝜕𝑥 𝜕𝑦
𝜕𝑣 𝜕𝑢 𝜕𝑣 .............................................................
Hence 𝜕𝑢 = , =− (2)
𝜕𝑥 𝜕𝑦 𝜕𝑦 𝜕𝑥
(or)
(or)
Statement: Let c denote a closed contour and 𝑐1, 𝑐2, 𝑐3, ........... 𝑐𝑘 be a finite number of closed
contours interior to c such that the interiors of the 𝑐𝑗′𝑠 do not have any points in common.
Let R be the region consisting of points on and within c except the interior points of
𝑐𝑗. If B denotes the positively oriented boundary of the region R, then
13
∫𝐵 𝑓(𝑧)𝑑𝑧 = 0 , where 𝑓(𝑧) is analytic in the region 𝑅.
If ‘c’ is a simple closed contour and 𝑐1, 𝑐2, 𝑐3, … … … 𝑐𝑛 are closed contours within 𝑐
and if 𝑓(𝑧) is analytic within c but on and outside the 𝑐𝑖′𝑠 then
Where the integrals are all taken in the anticlockwise sense around the curves.
Result:Let ‘𝑐’ be a simple closed curve. Let 𝑓(𝑧) be analytic on and within ‘𝑐’ everywhere
except at 𝑧 = 𝑎
∫ 𝑓(𝑧)𝑑𝑧 = ∫ 𝑓(𝑧)𝑑𝑧
𝑐 𝑐1
Statement: Let 𝑓(𝑧) be an analytic function everywhere on and within a closed contour 𝑐.
If 𝑧 = 𝑎 is any point within 𝑐, then
1 𝑓(𝑧)
𝑓(𝑎) = ∫ 𝑑𝑧
2𝜋𝑖 𝑐 (𝑧−𝑎)
Proof:Let 𝑓(𝑧) be analytic within a closed contour. Let 𝑧 = 𝑎 be within 𝑐. Choose a suitably
small positive number 𝑟0 and describe a circle 𝑐0 with centre at a and radius 𝑟0 so that this
y
c
81
𝑐0
Therefore by generalization to cauchy’sthorem, we get
𝑓(𝑧) 𝑓(𝑧)
∫ 𝑑𝑧 = ∫ 𝑑𝑧
(𝑧 − 𝑎) (𝑧 − 𝑎)
𝑐 𝑐0
𝑑𝑧 𝑓(𝑧) − 𝑓(𝑎)
= 𝑓(𝑎) ∫ +∫ 𝑑𝑧 … … … . . (1)
𝑐 𝑧−𝑎 𝑐 𝑧−𝑎
Where the integrals around 𝑐0 are all taken in the positive sense,
Also 𝑓(𝑧) is continuous at 𝑎. Hence, to each 𝜖 > 0, there corresponds a positive 𝛿 such that
𝑓(𝑧)−𝑓(𝑎) |𝑓(𝑧)−𝑓(𝑎)|
Hence, |∫ 𝑑𝑧| ≤∫ |𝑑𝑧| < 𝗀 ∫𝑐 |𝑑𝑧|
𝑐 0 𝑧−𝑎 𝑐0 |𝑧−𝑎| 𝛿 0
82
𝜖
< (2𝜋𝛿) 〈∫ |𝑑𝑧| = 𝑝𝑒𝑟𝑖𝑚𝑒𝑡𝑒𝑟 𝑜𝑓 𝑡ℎ𝑒 𝑐𝑖𝑟𝑐𝑙𝑒 𝑐0〉
𝛿 𝑐0
< 2𝜋𝜖
Hence, the second integral on the R.H.S of (1) can be made arbitrarily small by taking
𝑟0 sufficiently small. Thus,
L.H.S and the first term on the R.H.S are independent of 𝑟0 and the second integral on the
R.H.S can be made arbitrarily small. Further the second integral must also be independent of
𝑟0.
𝑓(𝑧)
∫( 𝑑𝑧 = 2𝜋𝑖 𝑓(𝑎)
𝑧 − 𝑎)
𝑐
1 𝑓(𝑧)
i.e., (𝑎) = ∫ 𝑑𝑧.
2𝜋𝑖 𝑐 (𝑧−𝑎)
Statement: If 𝑓(𝑧) is analytic on and within a simple closed curve 𝑐 and if 𝑎 is any point
within 𝑐, then
𝑛! 𝑓(𝑧)
𝑓𝑛(𝑎) = ∫ 𝑑𝑧
2𝜋𝑖 𝑐 (𝑧 − 𝑎)𝑛+1
Morera’s Theorem:
Problems:
83
𝒛𝟐−𝒛+𝟏 𝟏
1. Evaluate ∫ 𝒅𝒛 where 𝑪: |𝒛| = taken in anticlockwise sense.
𝒄 𝒛−𝟏 𝟐
84
𝑧2−𝑧+1
Sol: Let 𝑓(𝑧) =
𝑧−1
𝟏
2. Prove that ∫ 𝒅𝒛 = 𝟐𝝅𝒊, where C is |𝒛 − 𝒂| = 𝒓.
𝒄 𝒛−𝒂
Sol: Let 𝐴 be the fixed complex number ‘𝑎’ and P a variable point 𝑧 on the circle.
Therefore 𝑧 − 𝑎 = 𝑟𝑒𝑖𝜃
This is the parametric equation to the circle C and 𝜃 varies from 0 to 2𝜋, 𝑟 being
constant.
y
Z plane
P
r 𝜃
A
a
𝑑𝑧
Hence ∫ = 2𝜋 𝑟𝑖𝑒𝑖𝜃
𝑑𝜃
𝑐 𝑧−𝑎 ∫0 𝑟𝑒𝑖𝜃
2𝜋
= ∫0 𝑖𝑑𝜃
= 𝑖(𝜃)02𝜋
= 2𝜋𝑖.
85
3. Consider the region 𝟏 ≤ |𝒛| ≤ 𝟐. If B is the positively oriented boundary of this region
𝒅𝒛
then show that ∫ = 𝟎.
𝑩 𝒛𝟐(𝒛𝟐+𝟏𝟔)
1
Sol: Given 𝑓(𝑧) =
𝑧2(𝑧2+16)
|𝑧| = 1 𝑎𝑛𝑑 |𝑧| = 2are two circles with centre at (0,0) and radii equal to 1 and 2
respectively
⟹ 𝑧 = 0 (𝑜𝑟)𝑧2 + 16 = 0
⟹ 𝑧 = 0 (𝑜𝑟)𝑧 = ±4𝑖
𝑧 = 0,4𝑖, −4𝑖are called singular points, which are outside of the region.
𝑑𝑧
∫ = 0.
𝐵 𝑧2(𝑧2+16)
4. If 𝑩 is the positively oriented boundary of the region between the circle |𝒛| = 𝟒 and
th𝟐 square with sides along the lines 𝒙 = ±𝟏 and 𝒚 = ±𝟏, then evaluate ∫
𝒛+e 𝒅𝒛?
𝒛
𝑩 𝐬𝐢𝐧( )
𝟐
𝑧+2
Sol: Let 𝑓(𝑧) =
sin(𝑧)
2
The given region is between |𝑧| = 4 and the square = ±1 𝑎𝑛𝑑 𝑦 = ±1,
86
|𝑧| = 4is the circle with centre (0,0) 𝑎𝑛𝑑 𝑟 = 4
87
𝑧
The singular points of 𝑓(𝑧) are given by sin ( ) = 0
2
𝑧
⟹ = 𝑛𝜋, n is an integer
2
i.e. , 𝑧 = 2𝑛𝜋
𝑧 = 0,±2𝜋, ±4𝜋, … … … ….
Here 𝑧 = 0 lies inside of the square and all remaining points lies outside of the circle.
By Cauchy’s theorem,
𝑑𝑧
∫ = 0
𝐵 𝑧2(𝑧2 + 16)
𝒛 𝟐+𝟒
5.Evaluate∫ 𝒅𝒛 where 𝒄 is (𝒂)|𝒛| = 𝟓 (𝒃)|𝒛| = 𝟐 taken in anticlockwise?
𝒄 𝒛−𝟑
Sol: (𝑎)|𝑧| = 5 is the circle with centre at (0,0) and radius 5 units.
𝑧2 + 4 𝑓(𝑧)
𝑑𝑧
∫ 𝑑𝑧 = ∫ 𝑧 − 𝑎
𝑐 𝑧−3 𝑐
𝑓(𝑧)
∫ 𝑑𝑧 = 2𝜋𝑖𝑓(𝑎) = 2𝜋𝑖[𝑧2 + 4]
𝑧−𝑎 𝑧=𝑎=3
= 2𝜋𝑖(9 + 4) = 26𝜋𝑖
(𝑏)|𝑧| = 2is the circle with centre at (0,0) and radius equal to 2. The point 𝑧 = 3 is outside
this curve.
2+4
Therefore the function 𝑧 is analytic on and within 𝑐: |𝑧| = 2.
𝑧−3
𝑧2+4
Hence by Cauchy’s theorem ∫ 𝑑𝑧 = 0
𝑐 𝑧−3
88
𝒆𝟐𝒛 𝒅𝒛 where 𝒄 is the circle |𝒛| = 𝟑.
6. Evaluate∫
𝒄 (𝒛−𝟏)(𝒛−𝟐)
1 1 1
= − using partial fractions.
(𝑧−1)(𝑧−2) 𝑧−2 𝑧−1
𝒆𝒛
7. Use Cauchy’s integral formula to evaluate ∫ 𝒅𝒛 where C is the circle | |𝒛 =
𝒄 𝟐 𝟒.
(𝒛𝟐+𝝅 𝟐)
Sol: 𝑒𝑧
𝑒𝑧
= (𝑧+𝜋𝑖)2(𝑧−𝜋𝑖)2
(𝑧2+𝜋2)2
𝑓(𝑧) = 𝑒𝑧is analytic within the circle |𝑧| = 4 and the two singular points 𝑧 = ±𝜋𝑖 lies inside
𝐶.
1 1
Let =
(𝑧2+𝜋2)2 (𝑧+𝜋𝑖)2(𝑧−𝜋𝑖)2
𝐴 𝐵 𝐶 𝐷
= + + +
𝑧+𝜋𝑖 (𝑧+𝜋𝑖)2 𝑧−𝜋𝑖 (𝑧−𝜋𝑖)2
7 −1 −7 −1
𝐴 = ,𝐵 = ,𝐶 = ,𝐷 =
2𝜋3𝑖 4𝜋2 2𝜋3𝑖 4𝜋2
𝑒𝑧 7 𝑒𝑧
∫ 𝑑𝑧 = ∫ 𝑑𝑧
𝑐
(𝑧2 + 𝜋2)2 2𝜋3𝑖 𝑐
(𝑧 + 𝜋𝑖)
1 𝑒𝑧 7 𝑒𝑧 1 𝑒𝑧
𝑐 𝑐
− ∫ 𝑑𝑧 − ∫ 𝑑𝑧 − ∫ 𝑑𝑧
4𝜋 2 (𝑧 + 𝜋𝑖) 2 2𝜋3𝑖 (𝑧 − 𝜋𝑖) 4𝜋 2 (𝑧 − 𝜋𝑖)2
𝑐
89
Therefore by Cauchy’s integral formula,
1
− ′(𝜋𝑖)
4𝜋2 2𝜋𝑖𝑓
90
7 𝑖 7 𝑖 𝑖
= 𝑒−𝑖𝜋 − 𝑒−𝑖𝜋 − 𝑒𝑖𝜋 − 𝑒𝑖𝜋 =
𝜋2 2𝜋 𝜋2 2𝜋 𝜋
(𝟐𝒛𝟐−𝒛−𝟐)
8.Find𝒇(𝟐) and 𝒇(𝟑) if 𝒇(𝒂) = ∫ 𝒅𝒛 where 𝑪 is the circle |𝒛| = 𝟐. 𝟓 using
𝒄 𝒛−𝒂
(2𝑧2−𝑧−2)
Sol: Given 𝑓(𝑎) = ∫ 𝑑𝑧
𝑐 𝑧−𝑎
∅(𝑧)
⟹ 2𝜋𝑖∅(𝑎) = ∫ 𝑑𝑧 = 𝑓(𝑎)
𝑐 𝑧−𝑎
(2𝑧2−𝑧−2)
(𝑖𝑖)Taking 𝑎 = 3, we get, 𝑓(3) = ∫ 𝑑𝑧
𝑐 𝑧−3
Now, the point 𝑧 = 3 lies outside 𝐶. Hence the integrand is analytic within and on 𝐶.
(2𝑧2−𝑧−2)
Therefore by Cauchy’s theorem, 𝑓(3) = ∫ 𝑑𝑧 = 0.
𝑐 𝑧−3
𝒛𝟑𝒆−𝒛 𝟏
9. Evaluate using Cauchy’s theorem ∫ 𝒅𝒛 where 𝑪 is |𝒛 − 𝟏| = .
𝒄 (𝒛−𝟏)𝟑 𝟐
1
Sol: Given curve is |𝑧 − 1| = .
2
The integrand has only one singular point at 𝑧 = 1 and it lies inside 𝐶.
91
This function is analytic at all points inside 𝐶.
𝑛! 𝑓(𝑧)
𝑓𝑛(𝑎) = ∫ 𝑑𝑧
2𝜋𝑖 𝑐 (𝑧 − 𝑎)𝑛+1
Then
2! 𝑧3𝑒−𝑧
𝑓′′(1) = ∫ 𝑑𝑧
2𝜋𝑖 𝑐 (𝑧 − 1)3
𝑧3𝑒−𝑧
∴∫
(𝑧 − 1)3 𝑑𝑧 = 𝜋𝑖𝑓 (1)
′′
𝑐
𝑑2
= 𝜋𝑖 { 2 [𝑧3𝑒−𝑧]}
𝑑𝑧 𝑧=1
𝑑
= 𝜋𝑖 { [3𝑧2𝑒−𝑧 − 𝑧3𝑒−𝑧]}
𝑑𝑧 𝑧=1
formula.
93
Sol: 𝑓(𝑧) = sin 𝜋𝑧2 + cos 𝜋𝑧2 is analytic within the circle |𝑧| = 3 and the singular points
𝑎 = 1,2 lie inside 𝑐.
Assignment questions:
𝑥−𝑖𝑦
1.Find whether 𝑓(𝑧) = is analytic or not.
𝑥2+𝑦2
2. Show that the real and imaginary parts of the function 𝑤 = log 𝑧 satisfy the C-R equations
𝑥3(1 + 𝑖) − 𝑦3(1 − 𝑖)
𝑓(𝑧) = { 𝑥2 + 𝑦2 , (𝑧 ≠ 0)
0, (𝑧 = 0)
Is continuous and the Cauchy-Riemann equations are satisfied at the origin, yet 𝑓′(0) does
not exist.
4. Find 𝑘 such that 𝑓(𝑥, 𝑦) = 𝑥3 + 3𝑘𝑥𝑦2 may be harmonic and find its conjugate.
5. Evaluate ∫𝑐 (𝑥 − 2𝑦)𝑑𝑥 + (𝑦2 − 𝑥2) 𝑑𝑦 where 𝐶 is the boundary of the first quadrant of
the circle 𝑥2 + 𝑦2 = 4.
6. Verify Cauchy’s theorem for the function 𝑓(𝑧) = 3𝑧2 + 𝑖𝑧 − 4 if 𝑐 is the square with the
vertices at 1 ± 𝑖, −1 ± 𝑖.
𝑧3−sin 3𝑧
7. Evaluate ∫ 𝑑𝑧 with 𝐶: |𝑧| = 2 using Cauchy’s integral formula.
𝑐 𝜋 3
(𝑧−2)
94
log 𝑧 1
8. Evaluate ∫ 𝑑𝑧 where 𝐶: |𝑧 − 1| = using Cauchy’s integral formula.
𝑐 (𝑧−1)3 2
95
𝑧4 𝑑𝑧 where 𝐶 is the ellipse
9. Using Cauchy’s integral formula, evaluate ∫
𝑐 (𝑧+1)(𝑧−𝑖)2
𝑒𝑧
11. Evaluate ∫ 𝑑𝑧 where | |𝐶: 𝑧 −
1 = 3.
𝑐 𝑧(𝑧+1)
𝑧2−𝑧+1 1
12. Evaluate ∫ 𝑑𝑧 where 𝑐 is (𝑖) |𝑧| = 1(𝑖𝑖)|𝑧| = taken in anticlockwise sense.
𝑐 𝑧−1 2
96
UNIT –IV
Singularities and Residues
Introduction: In this unit, we discuss the method of expanding a given function about a point
‘𝑎’ in powers of ‘𝑧 − 𝑎’, as we proceed, we recognize that this theory enables us in evaluating
certain real & complex integrals easily. Here we discuss Taylor’s series & Laurent series
expansion of 𝑓(𝑧)about point ‘a’.
In this unit we also discuss about Residue Theorem which is useful to evaluate certain
real integrals.
Sequence: A sequence {𝑍𝑛} is a function from 𝑁 𝐶 i.e., 𝑍𝑛: 𝑁 𝐶
Series: Let {𝑍𝑛}∞𝑛=1be a sequence, the nth partial sum of sequence is called series and it is
denoted by ∑∞𝑛=1 𝑍𝑛
Power Series: Let {𝑍𝑛}∞ be a sequence of complex no’s the series ∑∞ 𝑎𝑛 (𝑧 − 𝑧0)𝑛 is
𝑛=1 𝑛=1
∞
The Series ∑𝑛=1 𝑎𝑛𝑧𝑛 is a power series about the origin.
If a series ∑∞𝑘=0 𝑎𝑘 converges at every point of circle ‘C’ & diverges at every point
outside the circle ‘C’, then such a Circle ‘C’ is said to be circle of convergence of the
series ∑∞𝑘=0 𝑎𝑘. The Radius R of the Circle ’C’ called the radius of convergence of the
series ∑∞𝑘=0 𝑎𝑘.
𝑎𝑛+1
The formula to find radius of convergence (R) is 1 = 𝐿𝑡 𝑆𝑢𝑝 | | (or) 1 =
𝑅 𝑛→∞ 𝑎𝑛 𝑅
1
𝐿𝑡𝑛→∞ 𝑆𝑢𝑝|𝑎𝑛 | ⁄𝑛.
on comparing 𝑎𝑛 = (log
𝑧)𝑛
|1⁄𝑛
we know that 1 = 𝐿𝑡
𝑆𝑢𝑝|𝑎
𝑅 𝑛→∞ 𝑛
1⁄
= 𝐿𝑡𝑛→∞ 𝑆𝑢𝑝|(log 𝑧)𝑛| 𝑛
1= ∞
𝑅
𝑅=0
Radius of Convergence =0
i.e., Circle with zero radius.
97
Hence the circle of convergence is |𝑧| = 0
98
(−𝟏)𝒏−𝟏𝒛𝟐𝒏−𝟏
2. Find the circle of convergence of the series ∑∞
(𝟐𝒏−𝟏)!
99
(−1)𝑛−1 (−1)𝑛
𝑎𝑛+1 =
Sol. We have 𝑎𝑛 = (2𝑛−1)! (2𝑛+1)!
𝑎𝑛+1
1 = 𝐿𝑡 𝑆𝑢𝑝 | |
𝑅 𝑛→∞ 𝑎𝑛
(2𝑛−1)!
= 𝐿𝑡𝑛→∞ 𝑆𝑢𝑝 | |
(2𝑛+1)(2𝑛)(2𝑛−1)!
1
= 𝐿𝑡𝑛→∞ | |
(2𝑛+1)(2𝑛)
=0
∴ 𝑅 → ∞, Circle with ∞ radius
∴The given series is convergent everywhere in the complex plane.
Taylor’s Theorem:
Let 𝑓(𝑧) be analytic at all points within a circle C with center at ‘a’ & radius r. then at each
point ‘z’ within ‘C’.
𝑓′′ (𝑎) 𝑓′′′ (𝑎)
𝑓(𝑧) = 𝑓(𝑎) + 𝑓′(𝑎)(𝑧 − 𝑎) + (𝑧 − 𝑎)2 + (𝑧 − 𝑎)3 + … … .. _(1)
2! 3!
𝑖.e., the series on the right hand side in (1) converges to f(z) whenever |𝑧 − 𝑎| < 𝑟
- The expansion in (1) on the R.H.S is called the Taylor’s series expansion of 𝑓(𝑧) in
power of (𝑧 − 𝑎) (or) Taylor’s series expansion of 𝑓(𝑧) about z =a (around z = a)
Maclaurin’s Series:
Taylor’s series expansion about a=0 is called Macluarin’s Series i.e.,
𝑓′′(0) 𝑓′′′ (0)
𝑓(𝑧) = 𝑓(0) + 𝑓′(0)(𝑧) + (𝑧)2 + (𝑧)3 + … … .. _(2)
2! 3!
𝑧3 𝑧5
2. 𝑠𝑖𝑛𝑧 = 𝑧 − + − … … … ..
3! 5!
𝑧2 𝑧4
3. 𝑐𝑜𝑠𝑧 = 1 − + − … … … ..
2! 4!
4. 𝑠𝑖𝑛ℎ𝑧 = ∑∞ 𝑧2𝑛+1
𝑛=1 (2𝑛+1)!
Important Note: To obtain Taylor’s series expansion of 𝑓(𝑧) around about 𝑧 = 𝑎, then put
𝑧 − 𝑎 = 0. Then
𝑓(𝑧) = 𝑓(𝑤 + 𝑎) = 𝜙(𝑤) (say)
now write the Maclaurin’s series expansion of 𝜙(𝑤).
100
Finally substitute𝑤 = 𝑧 − 𝑎, then we get required Taylor’s Series.
101
Problems on Taylor’s Series Expansion of 𝒇(𝒛):
1. Expand 𝒆𝒛 as Taylor’s series about 𝒛 = 𝟏
Sol: Given 𝑓(𝑧) = 𝑒𝑧, 𝑧=1
Let 𝑧 − 1 = 𝑤 ⇒ 𝑧 = 1 + 𝑤
Now, write Maclaurin’s series for 𝜙(𝑤)
𝜙′′(0) 𝜙′′′(0)
i.e., 𝜙(𝑤) = 𝜙(0) + 𝜙′(0)(𝑤) + (𝑤)2 + (𝑤)3 + … … … …
2! 3!
Now replace 𝑤 by 𝑧 − 1
(𝑧−1)2
𝜙(𝑧 − 1) = 𝑒[1 + (𝑧 − 1) + + … … … …]
2!
𝟏
2. Find Taylors series of 𝒇(𝒛) = about 𝒛 = −𝒊
(𝟏+𝒛)𝟐
𝑝𝑢𝑡 𝑎 = −i
′ 𝑓′′(−𝑖) 𝑓′′′(−𝑖)
−1 .2!
𝑓′(𝑧) =
−2 ⇒ 𝑓′(−𝑖) =
(1+𝑧)3 (1−𝑖)3
6 3!
𝑓′′(𝑧) = ⇒ 𝑓′′(−𝑖) =
(1+𝑧)4 (1−𝑖)4
102
about 𝒛 = 𝟏 (or)
Write the Taylor’s series expansion of 𝒛
about 𝒛 = 𝟏
(𝒛+𝟏)(𝒛−𝟐)
𝑧
Sol: Given 𝑓(𝑧) = & a=1
(𝑧+1)(𝑧−2)
103
𝐴 𝐵
𝑧 = + (by partial fractions)
(𝑧+1)(𝑧−2) 𝑧+1 𝑧−2
2 1
∴ 𝑓(𝑧) = 3(𝑧+1) + 3(𝑧−2)
Now let 𝑧 − 1 = 𝑤 ⇒ 𝑧 = 1 + 𝑤
2 1
= +
3(𝑤+2) 3(𝑤−1)
1 𝑤 −1 1 ]−1
[ [
= 1+ ] − 1+𝑤
3 2 3
𝑤 𝑤2 𝑤3
= 1 [1 − + − + … … … . . ]- 1 [1 + 𝑤 + 𝑤2 + 𝑤3 + ⋯ ]
3 2 4 8 3
𝑤
( if | | < 1 ⇒ |𝑤| < 1 ; |𝑤| < 2 ⇒ |𝑤| < 1 )
2
1 𝑧−1 (𝑧−1)2 (𝑧−1)3
𝑓(𝑧) = [1 − + − + … . . ]- 1 [1 + (𝑧 − 1) + (𝑧 − 1)2 + … . . ]
3 2 4 8 3
1
4. Expand 𝑓(𝑧) = about (𝑖) 𝑧 = −1 (𝑖𝑖) 𝑧 = 1
𝑧2−𝑧−6
2𝑧3+1
5. Find the Taylor’s series expansion of 𝑓(𝑧) = about point (𝑖) 𝑧 = −𝑖 (𝑖𝑖) 𝑧 = 1
𝑧2+𝑧
Laurent’s series Expansion: we have seen under Taylors series that if 𝑓(𝑧) is analytic at
𝑧 = 𝑎, we can have a series expansion of 𝑓 (𝑧) in non-negative powers of (𝑧 − 𝑎) which is
valid in a region given by |𝑧 − 𝑎| < 𝑅 for suitable 𝑅.
104
Laurent’s theorem gives a procedure to expand a given function in powers of (𝑧 − 𝑎).
The series expansion may have positive as well as negative powers.
Laurent’s Theorem:
105
Let C1 and C2 be two circular given by |𝑧′ − 𝑧0| = 𝑟 and |𝑧′ − 𝑧0| < 𝑅 respectively
where 𝑟 < 𝑅.
Let 𝑓(𝑧) be analytic on C1 and C2 throughout the region between the two circles. Let Z
be any point in the ring shaped region between the two circles C1 and C2 .
then
𝑓(𝑧) = ∑∞ 𝑎 (𝑧 − 𝑧 )𝑛 + ∑∞ 𝑏𝑛
1 𝑓(𝑧𝐹)
and 𝑏𝑛 = 2𝜋𝑖 ∮𝑐2 (𝑧𝐹−𝑧 −𝑛+1 𝑑𝑧′
0)
where integrals are taken around C1 and C2 in the anti clockwise direction.
Problems:
𝟏
1. Find Laurent’s series for 𝒇(𝒛) = & Find the region of convergence (or) Find
𝒛𝟐(𝟏−𝒛)
𝟏
two Laurent’s series expansion in powers of 𝒛 for 𝒇(𝒛) = & specify the
𝒛𝟐(𝟏−𝒛)
1 1 1
= −( + + + ....................... ) if |𝑧| > 1
𝑧3 𝑧4 𝑧5
= - ∑∞
𝑛=0 𝑧−𝑛−3 if |𝑧| > 1
106
= - ∑∞ (𝑧 − 0)−𝑛−3 if |𝑧| > 1
𝑛=0
107
1 𝟏 𝑨 𝑩
Sol: 𝑓(𝑧) = = = +
𝑧2−3𝑧+2 (𝒛−𝟏)(𝒛−𝟐) 𝒛−𝟏 𝒛−𝟐
A=-1, B=1
−𝟏 𝟏
∴ 𝑓(𝑧) = +
𝒛−𝟏 𝒛−𝟐
= 1 𝑧 − 1 1
−2(1− ) 𝑧(1−𝑧)
2
𝑧 −1 1 1 −1
= 1 (1 − ) − (1 − )
−2 2 𝑧 𝑧
1 𝑧 𝑧 2 𝑧 3 1 1 1 2
=
(1 + + ( ) + ( ) + … … . ) − (1 + + ( ) + … … … . )
−2 2 2 2 𝑧 𝑧 𝑧
1 𝑧
valid only if | | < 1 , | | < 1
𝑧 2
𝑧 𝑛 1 𝑛+1
= 1 ∑∞ ( ) - ∑∞ ( ) if 1 < |𝑧| < 2
−2 𝑛=0 2 𝑛=0 𝑧
This is the Laurent’s series expansion of 𝑓(𝑧) about z=0 (or) in powers of Z in the region
1 < |𝑧| < 2
(ii) Consider 0 < |𝑧 − 1| < 1
−𝟏 𝟏
We have 𝑓(𝑧) = +
𝒛−𝟏 𝒛−𝟐
= −𝟏 − (𝟏 − (𝒛 − 𝟏))−𝟏
𝒛−𝟏
= −𝟏 − (𝟏 − (𝒛 − 𝟏) + (𝒛 − 𝟏)𝟐 + … … … )
𝒛−𝟏
109
i.e., 1 < |𝑧| , |𝑧| < √2
|1| < 1 , |𝑧 | < 1
𝑧 √2
1 𝑧2
| |<1 , | |<1
2 𝑧 2
1 1
𝑓(𝑧) = −
(𝑧2 + 1) (𝑧2 + 2)
= 1 1 2
1 − 𝑧
𝑧2(1+𝑧2) 2(1+ )
2
1 1 −1 1 𝑧2 −1
= − 2 (1 + )
𝑧2
(1 + 1𝑧2) 2
1 1 1 1 𝑧2 𝑧4 𝑧6
= [1 − + − + … … … . ] − [1 − + − + …………..]
𝑧2 𝑧2 𝑧4 𝑧6 2 2 22 23
𝑛 1 2𝑛+2 𝑛+1
2𝑛
𝑓(𝑧) = ∑∞ (−1) 𝑧∞( ) +∑ (−1)
𝑛=0 𝑧 𝑛=0 2𝑛+1
2. Expand 1
in the region (a) 1 ≤ |𝑧| ≤ 2 (b) 0 ≤ |𝑧| ≤ 1 (c) |𝑧| ≥ 2
𝑧(𝑧2−3𝑧+2)
𝑧2−6𝑧−1
3. Find the Laurent’s series expansion of the function 𝑓(𝑧) = in the
(𝑧−1)(𝑧−3)(𝑧+2)
region 3 ≤ |𝑧 + 2| ≤ 5
Contour Integration
We have studied the functions which are analytic in a given region. But there are
several functions which are not analytic at certain points of its domain. Such exceptional
points are called the ‘singularities’ of the function & a type of a singular point is called a
‘Pole’. Now we study above different types of singularities & finding residues of a function
at a pole. Also we prove Residue theorem which is useful to evaluate certain real integrals.
110
Definition:
Zero (or) root of analytic function: It is a value of Z such that 𝑓(𝑧) = 0 (or) A point ‘a’ is
called a zero of an analytic function 𝑓(𝑧) if 𝑓(𝑎) = 0.
111
Ex: 𝑓(𝑧) = 𝑧 − 1, here 𝑓(1) = 0 ∴ ‘1’ is called zero (or) root of 𝑓(𝑧)
Zero of nth order : Let 𝑓(𝑧) be analytic function, if the root ‘a’ of 𝑓(𝑧) repeated ‘n’ times
then ‘𝑎’ is called root (or) zero of the nth order. & we write it as 𝑓(𝑧) = (𝑧 − 𝑎)𝑚𝜙(𝑧) where
𝜙(𝑧) ≠ 0.
Examples:
1. 𝑓(𝑧) = (𝑧 − 1)3, 𝑓(1) = 0, Hence ‘1’ is called zero of 3rd order.
1
2. 𝑓(𝑧) = , then 𝑓(∞) = 0, Hence ‘∞’ is called zero of order 1, it is a simple pole.
1−𝑧
3. 𝑓(𝑧) = 𝑠𝑖𝑛𝑧, the zeros of f(z) are z=0, ±𝜋, ±2𝜋, ±3𝜋, ±4𝜋 … … … ..
4. 𝑓(𝑧) = 𝑒𝑡𝑎𝑛𝑧 has no zeros (∵ 𝑒𝑧 ≠ 0)
Singular Point: A singular point of a function 𝑓(𝑧) is the point at which the function 𝑓(𝑧) is
not analytic.
(or)
A point ‘𝑎’ is said to be a singularity of 𝑓(𝑧) if 𝑓(𝑧) is not analytic at ‘𝑎’
Singularities are classical into two types:
(i) Isolated Singularity
(ii) Non- isolated singularity
Isolated singularity: A point 𝑧 = 𝑎 is called an isolated singularity of an analytic function
𝑓(𝑧) if (i) 𝑓(𝑧) is not analytic at ‘𝑎’
(𝑖𝑖) 𝑓(𝑧) is analytic in the deleted neighborhood of 𝑧 = 𝑎
𝟏
Ex.1. 𝒇(𝒛) =
𝒛−𝟏
𝟏
Ex. 2. 𝒇(𝒛) =
(𝒛−𝟏)(𝒛−𝟐)
Further 𝑧 = 1,2 are isolated singularity of 𝑓(𝑧) since 𝑓(𝑧) is analytic in the deleted
neighborhood of 𝑧 = 1,2.
𝒆𝒛
Ex.3. 𝒇(𝒛) =
𝒛𝟐+𝟏
112
𝟐
Ex.4. 𝒇(𝒛) =
𝐬𝐢𝐧 𝒛
𝟏
Ex. 𝒇(𝒛) = 𝟏
𝐬𝐢𝐧(𝒛)
1 1
sin ( ) = 0 ⇒ = ±𝑛𝜋 ⇒z= 1 , n=±1, ±2, ±3, ±4 … … … ..
𝑧 𝑧 𝑛𝜋
1
It may be noted that 𝐿𝑡 =0
𝑛→∞ 𝑛𝜋
∴ 𝑓(𝑧) has Laurent’s expansion which is valid in the annulus 0 < |𝑧 − 𝑎| < 𝑅
In this expansion ∑∞ 𝑎 (𝑧 − 𝑎)𝑛 is called the analytic part and ∑∞ 𝑏𝑛 is called the
𝑛=1 𝑛 𝑛=1 (𝑧−𝑎)𝑛
1. Removable Singularity: If the principle part of the Laurent’s expansion of 𝑓(𝑧) around
113
the singular point 𝑧 = 𝑎contains no terms. Then singularity is said to be a ‘Removable
Singularity” of 𝑓(𝑧).
114
In this case the singularity can be removed by appropriately defining the function 𝑓(𝑧) at
𝑧 = 𝑎 in such a way that it becomes analytic at 𝑧 = 0, such a singularity is called removable
singularity.
1−𝐶𝑜𝑠 𝑧 0
𝐿𝑡𝑧→0 𝑓(𝑧) = 𝐿𝑡𝑧→0 ( 𝑓𝑜𝑟𝑚)
𝑧 0
sin 𝑧
= 𝐿𝑡𝑧→0 (𝐿 ℎ𝑜𝑠𝑝𝑖𝑡𝑎𝑙𝑠 𝑅𝑢𝑙𝑒)
1
= 0 (finite)
2. Pole: If the principal part of Laurent’s series expansion of 𝑓(𝑧) around singular point 𝑧 =
𝑎. Then 𝑧 = 𝑎 is called a pole.
- If 𝑏𝑚 ≠ 0 & 𝑏𝑘 = 0 for 𝑘 = 𝑚 + 1, 𝑚 + 2, … … … …
Then 𝑧 = 𝑎 is called a ple of order ‘𝑚’
- A pole of order 1 is called a simple pole.
𝒛𝟐
Ex: 𝒇(𝒛) =
(𝒛−𝟏)(𝒛+𝟐)𝟐
𝑧 = −2 is a pole of order 2
Essential Singularity: If the principle part of the Laurent’s series expansion of 𝑓(𝑧)around
𝑧 = 𝑎 (Singular point) contains infinitely many terms then 𝑧 = 𝑎 is called an Essential
singularity of 𝑓(𝑧).
which is Laurent’s series expansion of f(z) around 𝑧 = 2. It contains only one –ve
power of order one.
−1⁄
The singular point are given by 𝑒 𝑧 =0
1
⇒ =∞
𝑧
⇒𝑧=0
1⁄ 1
Now 𝑓(𝑧) = 𝑒 𝑧= 1 + 1 +1 ( ) + 1
( ) 3 + ........................ if 0 < |𝑧| < ∞
1
2
𝑧 2! 𝑧 3! 𝑧
1
= ∑∞ (𝑧 − 0) −𝑛
𝑛=0 𝑛!
Singularity at Infinity: Let the function is f(z), to find the singularitites of f(z) at z=∞ then
1
put 𝑧 = in 𝑓(𝑧).
𝑡
1
Then 𝑓(𝑧) = 𝑓 ( ) = 𝐹(𝑡) [say]
𝑡
Laurent’s Theorem:
Let C1 and C2 be two circular given by |𝑧′ − 𝑎| = 𝑟1 and |𝑧′ − 𝑎| < 𝑟2 respectively
where 𝑟2 < 𝑟1.
116
Let f(z) be analytic on C1 and C2 throughout the region between the two circles. Let Z
be any point in the ring shaped region between the two circles C1 and C2 . then
𝑓(𝑧) = ∑∞ 𝑎 (𝑧 − 𝑎)𝑛 + ∑∞ 𝑏𝑛 which is called Laurent’s series expansion of f(z)
𝑛=1 𝑛 𝑛=1 (𝑧−𝑎)𝑛
about z=a.
1 𝑓(𝑧𝐹) 1 𝑓(𝑧𝐹)
where 𝑎𝑛 = 2𝜋𝑖 ∮𝑐1 (𝑧𝐹−𝑎)𝑛+1 𝑑𝑧′ and 𝑏𝑛 = 2𝜋𝑖 ∮𝑐2 (𝑧𝐹−𝑎)−𝑛+1 𝑑𝑧′
where the integrals are taken around C1 and C2 in the anti clockwise direction.
Residue at a pole: Let 𝑧 = 𝑎 be the pole of a function 𝑓(𝑧) then residue of 𝑓(𝑧) at 𝑧 = 𝑎 is
denoted by 𝑅𝑒𝑠𝑧=𝑎 [𝑓(𝑧)] and it is defined as the coefficient of 1
in the Laurent’s series
𝑧−𝑎
1
i.e., 𝑏1 = ∫ 𝑐 𝑓(𝑧)
2𝜋𝑖
Statement: Let C be any positively oriented simple closed contour. Let f(z) is analytic on &
with in ‘C’ except at a finite number of poles 𝑧1, 𝑧2, … … 𝑧𝑛 within ‘c’ and 𝑅1, 𝑅2, … … 𝑅𝑛 be
the residue of 𝑓(𝑧) at these poles, then ∫𝑐 𝑓(𝑧) 𝑑𝑧 = 2𝜋𝑖 [𝑅1 + 𝑅2 + … … +𝑅𝑛]
(or)
Proof: Let 𝑐1, 𝑐2, … … 𝑐𝑛 be the circles with center at 𝑧1, 𝑧2, … … 𝑧𝑛 respectively
117
The raddi so small therefore all circle 𝑐1, 𝑐2, … … 𝑐𝑛 are entirely lie in C
118
Now f(z) is analytic within the region enclosed by the curve ‘c’ between these circles.
.
.
.
.
1 ∫ 𝑓(𝑧) 𝑑𝑧 = 𝑅𝑒𝑠 [𝑓(𝑧)]
2𝜋𝑖 𝑐𝑛 𝑧=𝑧𝑛
Hence Proved
𝒆𝒛
1. Expand 𝒇(𝒛) = as a Laurent’s series about 𝒛 = 𝟏 & hence find the residue at
(𝒛−𝟏)𝟐
that point.
𝑒𝑧
Sol: Given 𝑓(𝑧) = &𝑧 = 1
(𝑧−1)2
𝑒 𝑒
= + +𝑒 + 𝑒(𝑧−1) + … … … …
(𝑧−1)2 (𝑧−1) 2! 9
120
+ 𝑒 + ⋯…………]
= [ 𝑒 + 𝑒(𝑧−1) + … … … … . . ] + [ 𝑒
2! 9 (𝑧−1) (𝑧−1)2
i.e., 𝑅𝑒𝑠𝑧=1[𝑓(𝑧)] = 𝑒
𝒛
Sol. (i) 𝑓(𝑧) =
𝐜𝐨𝐬 𝒛
i.e., cos 𝑧 = 0
𝜋
i.e., = (2𝑛 + 1) , 𝑛 = 0 ± 1, ±2 … … ..
2
𝜋 3𝜋
∴ The poles are 𝑧 = ± ,± , .......,which are poles of order 1( simple poles).
2 2
∴ The poles are 𝑧 = 0, ±𝜋,± 2𝜋, ,± 3𝜋 ............. , which are poles of order 1( simple poles).
(iii) 𝑓(𝑧)= 𝒛
𝒛𝟐−𝟑𝒛+𝟐
121
and residues at the poles.
3
Sol: Given 𝑓(𝑧)= 𝑧
(𝑧−1)4(𝑧−2)(𝑧−3)
122
The poles of 𝑓(𝑧) are given by (𝑧 − 1)4(𝑧 − 2)(𝑧 − 3) = 0
⇒ 𝑧 = 1, 2, 3
ℎ𝑒𝑟𝑒 𝑧 = 1 is a pole of order 4, 𝑧 = 2, 3 are poles of order 1.
i) Residue at pole 𝑧 = 2
w.k.t If 𝑧 = 𝑎 is apole of order 1 then
𝑅𝑒𝑠𝑧=𝑎[𝑓(𝑧)] = 𝐿𝑡𝑧→𝑎(𝑧 − 𝑎)𝑓(𝑧)
𝑧3
𝑅𝑒𝑠𝑧=2 [𝑓(𝑧)] = 𝐿𝑡𝑧→2 (𝑧 − 2)𝑓(𝑧)= 𝐿𝑡𝑧→2 (𝑧 − 2) = 8
= −8
(𝑧−1)4(𝑧−2)(𝑧−3) 1(−1)
here 𝑚 = 4, 𝑎 = 1
1 𝑑3 𝒛𝟑
𝑅𝑒𝑠 [𝑓(𝑧)] = 𝐿𝑡 [ (𝑧 − 𝑎)4. ]
𝑧=1 3! 𝑧→1 𝑑𝑧 3 (𝒛−𝟏)𝟒(𝒛−𝟐)(𝒛−𝟑)
1 𝑑3 𝒛𝟑
𝑅𝑒𝑠 [𝑓(𝑧)] = 𝐿𝑡 [ . ] (1)
𝑧=1 6 𝑧→1 𝑑𝑧3 (𝒛−𝟐)(𝒛−𝟑)
3 𝒛𝟑
Let us find out 𝑑 [ ]
𝑑𝑧3 (𝒛−𝟐)(𝒛−𝟑)
𝑧3 𝐷
= 𝐴𝑧 + 𝐵 + 𝐶
+
(𝑧−2)(𝑧−3) 𝑧−2 𝑧−3
Hence 𝐴 = 1, 𝐵 = 5, 𝐶 = −8, 𝐷 = 27
𝑧3 27
=𝑧+5- 8
+
(𝑧−2)(𝑧−3) 𝑧−2 𝑧−3
3
By solving 𝑑 [ 48 162 (2)
𝒛𝟑 ]= −
123
[𝑓(𝑧)] = 1 𝐿𝑡 48 162
𝑅𝑒𝑠 −
𝑧=1 6 𝑧→1 (𝑧−2)4 (𝑧−3)4
162
= 1 [48 − ]
6 16
124
𝟏
4. Find the Residues of 𝒇(𝒛) =
𝒛(𝒆𝒛−𝟏)
1
Sol. Given 𝑓(𝑧) =
𝑧(𝑒𝑧−1)
2 3!
1
= 2 𝑧
𝑧×𝑧[1+ + 𝑧 +⋯…………….]
2 3!
1 𝑧 𝑧2 −1
= 𝑧2 [1 + (2 + 3!
+ ⋯ … … … … … )]
2
1 𝑧 𝑧2 𝑧 𝑧2
=
𝑧2
[1 − (2 + 3!
+ ⋯ … … … … … ) + (2 + 3!
+ ⋯………) ………..]
𝑧 1 1 1 1 1
= 1 [1 − + ( − ) 𝑧2 + (− + − ) 𝑧3 + … … . . ]
𝑧2 2! 4 6 24 6 8
1 1 1 1
𝑓(𝑧) = − + + 𝑧2+ ………….
𝑧2 2𝑧 12 360
Assignment Questions:
125
𝑧𝑒𝑧
(4) 𝑓(𝑧) =
(𝑧−1)3
𝑧2
(5) 𝑓(𝑧) =
(𝑧+1)2(𝑧+2)
126
Problems related to evaluation of integrals using residue theorem:
𝟒−𝟑𝒁
1. Evaluate ∮ dz where ‘C’ is the circle|𝒛| = 𝟑/𝟐 using residue theorem.
𝒁(𝒁−𝟏)(𝒁−𝟐)
⇒ |𝑥 + 𝑖𝑦 − 0| = 3/2
⇒ |(𝑥 − 0) + 𝑖𝑦|=3/2
Residue of 𝑓(𝑧) at 𝑧 = 0 :
4−3𝑍
𝑅1= 𝑅𝑒𝑠 𝑓(𝑧)𝑎𝑡 𝑧=0 = 𝐿𝑡𝑧→0 (𝑧 − 0) = 4/2 = 2 ⇒ 𝑅1 = 2
𝑍(𝑍−1)(𝑍−2)
4−3𝑍
𝑅2 = 𝑅𝑒𝑠 𝑓(𝑧)𝑎𝑡 𝑧=1 = 𝐿𝑡𝑧→1 (𝑧 − 1) =1/1(-1) = -1 ⇒ 𝑅2 = −1
𝑍(𝑍−1)(𝑍−2)
4 − 3𝑍
∮ 𝑑𝑧 = 2𝜋𝑖(𝑅1 + 𝑅2)
𝑍(𝑍 − 1)(𝑍 − 2)
= 2𝜋𝑖(2 − 1)
= 2𝜋𝑖
127
Note: ∫ f(z)dz = 2πi(sum of residues )
128
2. Obtain the Laurent’s Series for the function 𝒇(𝒛) =
𝟏 & evaluate ∫ 𝟐 𝒅𝒛
𝟐 𝒛 𝒔𝒊𝒏𝒉𝒛
𝒛 𝒔𝒊𝒏𝒉𝒛
= 𝑧3 [1+( 𝑧2𝟏 𝑧4
3!
+ 5! +⋯ )]
1 𝑧2 𝑧4 −1
= 𝑧3
[1 + ( 3!
+ 5! + ⋯ )]
𝑧2 𝑧4 𝑧2 𝑧4
= 1 [1 − ( + +⋯) +( + + ⋯ )2 … . ]
𝑧3 3! 5! 3! 5!
[since (1 + 𝑥)−1 = 1 − 𝑥 + 𝑥2 + 𝑥3 …]
𝑧2 𝑧4 𝑧4
= 1 [1 − − + ….]
𝑧3 6 120 36
𝑧2 1 1
= 1 [1 − +( − )𝑧4 … . ]
𝑧3 6 36 120
1 1 7
f(z) = − + 𝑧4 … is called L.S exp of f(z) about 0
𝑧3 6𝑧 360
1
𝑅1 = 𝑅𝑒𝑠 𝑓(𝑧)𝑎𝑡 𝑧=0 = 𝑐𝑜𝑒𝑓𝑓𝑖𝑐𝑖𝑒𝑛𝑡 𝑜𝑓 𝑖𝑛 𝐿. 𝑆 𝑒𝑥𝑝 = −1/6
𝑧
129
𝑑𝑧 1 𝜋𝑖
∫ 2 = 2𝜋𝑖(𝑅1) = 2𝜋𝑖 (− ) = −
𝑧 𝑠𝑖𝑛ℎ𝑧 6 3
𝒅𝒛
3. Evaluate ∫ , where c is the circle |𝒛| = 𝟒 using residue theorem .
𝒔𝒊𝒏𝒉𝒛
130
1
Sol: Given 𝑓(𝑧) =
𝑠𝑖𝑛ℎ𝑧
The given curve ‘C’ is |z| = 4 which is a circle with center (0,0) & 𝑟𝑎𝑑𝑖𝑢𝑠 𝑟 = 4
Here the only poles lies inside the curve “c” are z=0, πi, -πi,
Residue at z=0:
1
= 𝑙𝑡 𝑧→0 𝑧. 𝑠𝑖𝑛ℎ𝑧
= 0 is indeterminant form
0
1
= 𝑙𝑡 𝑧→0 𝑐𝑜𝑠ℎ𝑧
(L-hospital rule )
1 1
= =
𝑐𝑜𝑠0 1
𝑅1 = 1
Residue at z= πi
(𝜋𝑖−𝜋𝑖)
= = 0 (indeterminant form )
𝑠𝑖𝑛ℎ(𝜋𝑖) 0
1
= 𝑙𝑡 𝑧→𝜋𝑖 ( )=(
1
)=
1
= −1
𝑐𝑜𝑠ℎ𝑧 𝑐𝑜𝑠ℎ(𝜋𝑖) −1
𝑅2 = −1
131
Similarly Residue at z= -πi is 𝑅3 = −1
132
By residue theorem ∫ 𝑓(𝑧)𝑑𝑧 = 2𝜋𝑖(𝑠𝑢𝑚 𝑜𝑓 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 )
1
∫ 𝑑𝑧 = 2𝜋𝑖(1 − 1 − 1 ) = −2𝜋𝑖
𝑠𝑖𝑛ℎ𝑧
In this section, we consider the evaluation of certain types of real definite integrals. These
integrals often arise in physical problems. To evaluate these integrals, we apply Residue
theorem which is simple than the usual methods of integration. The process of evaluating a
definite integral by making the parts of integration about a suitable contour (curve) in the
complex plane is called contour integration.
𝟐𝝅
Type I: Integrals of the type ∫𝟎 𝑭(𝒄𝒐𝒔𝜽, 𝒔𝒊𝒏𝜽)𝒅𝜽
Also since 0≤ 𝜃 ≤ 2𝜋 ⇒ 𝜃 travels on the entire unit circle & |𝑧| = |𝑒𝑖𝜃| = 1
2𝜋 1 1 1 1 𝑑𝑧
∴∫ 𝐹(𝑐𝑜𝑠𝜃, 𝑠𝑖𝑛𝜃)𝑑𝜃= ∫ 𝐹 [ (𝑧 + ) , (𝑧 − )] = ∫ 𝑓(𝑧) 𝑑𝑧 (say) (1)
133
0 𝐶 2 𝑧 𝑖
2 𝑧 𝑖𝑧 𝑐
134
From (1) & (2)
2𝜋
∴∫ 𝐹(𝑐𝑜𝑠𝜃, 𝑠𝑖𝑛𝜃)𝑑𝜃 = 2πi×[𝑠𝑢𝑚 𝑜𝑓 𝑡ℎ𝑒 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 ]
0
Problems:
𝝅 𝒅𝜽 𝝅
1. Show by the method of residues ∫ = (a>b>0)
𝟎 𝒂+𝒃
𝒄𝒐𝒔𝜽 √𝒂𝟐−𝒃𝟐
𝟐𝝅 𝒅𝜽 𝟐𝝅
Show that ∫𝟎 =
𝒂+𝒃 √𝒂𝟐−𝒃𝟐
𝒄𝒐𝒔𝜽
𝜋
Sol: we can write 𝑑𝜃 = 1 2
𝜋 𝑑𝜃 (1)
∫
0 𝑎+𝑏 𝑐𝑜𝑠𝜃 ∫
2 0 𝑎+𝑏 𝑐𝑜𝑠𝜃
Put 𝑧 = 𝑒𝑖𝜃
𝜋 𝑑𝜃 2𝜋 𝑑𝜃 1 1 𝑑𝑧
1
∫ = ∫ = ∫
𝑎 + 𝑏 𝑐𝑜𝑠𝜃 2 𝑎 + 𝑏 𝑐𝑜𝑠𝜃 2 𝑧2 + 1
0 0 𝐶 𝑎 + 𝑏 [ 2𝑧 ] 𝑖𝑧
1 2 𝑑𝑧 (2)
= ∫
2𝑖 𝑐 𝑏𝑧2+2𝑎𝑧+𝑏
1
Let 𝑓(𝑧) =
𝑏𝑧2+2𝑎𝑧+𝑏
−𝑎±√𝑎2−𝑏2
∴ The poles of f(z) are 𝑧 =
𝑏
135
1 1
Since a>b>0 ⇒ |β| > 1 ⇒ 1 > ⇒ <1
|β| |β|
𝑏
But we know that product of the roots 𝑐 = = 1
𝑎 𝑏
i.e., α.β=1
136
⇒ |α. β| = 1
1
⇒ |α| = | | < 1
𝛽
⇒ |α| < 1
∴ ′𝛼′ lies inside the unit circle ‘c’
𝑅𝑒𝑠𝑖𝑑𝑢𝑒 𝑜𝑓 𝑓(𝑧)𝑎𝑡 𝑧 = 𝛼:
1 2√𝑎2−𝑏 2
= ((∵ 𝛼 − 𝛽 = )
2√𝑎2−𝑏2 𝑏
By Residue theorem
1
∫ 𝑓(𝑧) 𝑑𝑧 = ∫ = 2πi×[𝑠𝑢𝑚 𝑜𝑓 𝑡ℎ𝑒 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 ]
𝑐 𝑐 𝑏𝑧 2+2𝑎𝑧+𝑏
= 2πi × 1
(3)
2√𝑎2+𝑏2
∫ 𝑧2 𝑑𝑧 = ∫ 𝑓(𝑧)𝑑𝑧
𝑐 (𝑧2+1)(𝑧2+4) 𝑐
Where 𝐶 is the contour consisting of the semi-circle 𝐶𝑅 of radius 𝑅 together with the
part of the real axis from – 𝑅 to 𝑅.
137
𝑧2
lim[(𝑧 − 𝑖)𝑓(𝑧)] = lim [(𝑧 − 𝑖) 2 ]
𝑧→𝑖 𝑧→𝑖 (𝑧 − 𝑖)(𝑧 + 𝑖)(𝑧 + 4)
138
𝑧2
= lim (𝑧+𝑖)(𝑧 2+4)
−1
= (2𝑖)(3) = −1
6𝑖
𝑧→𝑖
−4 1
= =
(−4+1)(4𝑖) 3𝑖
−1 1 1 1 2𝜋 𝜋
= 2𝜋𝑖 ( + ) = 2𝜋 ( − ) = 6 =
6𝑖 3𝑖 3 6 3
𝑅 𝜋
i.e., ∫ 𝑓(𝑥)𝑑𝑥 + ∫ 𝑓(𝑧)𝑑𝑧 = (since on real axis 𝑧 = 𝑥) (1)
−𝑅 𝑐𝑅 3
∞ 𝜋
𝑓(𝑥)𝑑𝑥 + lim ∫ 𝑓(𝑧)𝑑𝑧 = (2)
∫
−∞ 𝑧→∞ 𝑐𝑅 3
When 𝑅 → ∞, |𝑧| → ∞
∴ ∫𝑐 𝑓(𝑧)𝑑𝑧 = 0 (3)
𝑅
∞ 𝜋
∫ 𝑓( 𝑥)𝑑𝑥 =
−∞ 3
∞ 𝑥2 𝜋
i.e., 𝑑𝑥 =
∫−∞ (𝑥2+1)(𝑥2+4) 3
Assignment Questions
2𝜋 𝑠𝑖𝑛2𝜃 𝑑𝜃 2𝜋
1. Prove that = [𝑎 − √𝑎2 − 𝑏2] where a > b > 0
∫0 𝑎+𝑏 𝑐𝑜𝑠𝜃 𝑏2
139
2𝜋 𝑑𝜃 2𝜋
= , a>b>0 using Residue theorem.
2. Show that∫0 𝑎+𝑏 𝑐𝑜𝑠𝜃 √𝑎2−𝑏2
2𝜋 cos 2
𝜃
3. Evaluate ∫0 𝑑𝜃 using Residue theorem.
5+4
𝑐𝑜𝑠𝜃
140
2𝜋 1+4 cos 𝜃
𝑑𝜃 = 0
4. Show that ∫0 17+8 𝑐𝑜𝑠𝜃
2𝜋 1
5. Evaluate ∫0 𝑑𝜃 using Residue Theorem.
5−3
𝑐𝑜𝑠𝜃
∞
Type II: Integrals of the type ∫−∞ 𝒇(𝒙)dx [Integration around semi circle]
∞
∞
To solve the integrals of the type ∫ −∞𝑓(𝑥)dx, we consider ∫ −∞ 𝑓(𝑥)𝑑𝑥 = ∫𝑐 𝑓(𝑧)dz
𝐶 = 𝐶𝑅𝑈 real axis from –R to R [𝐶𝑅 is the semi circle in upper half plane with radius R]
If 𝑓(𝑧) has no poles on real axis &on circumference of a circle. But 𝑓(𝑧) has some poles
Inside curve ‘C’. Then by Residue theorem
𝑅
∫𝐶𝑅 𝑓(𝑧)𝑑𝑧 + ∫ −𝑅 𝑓(𝑥)𝑑𝑥 = 2𝜋𝑖 × [𝑠𝑢𝑚 𝑜𝑓 𝑡ℎ𝑒 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 𝑎𝑡 Interior poles]
∞
∫ 𝑓(𝑥)𝑑𝑥 = 2𝜋𝑖 × [𝑠𝑢𝑚 𝑜𝑓 𝑡ℎ𝑒 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 𝑎𝑡 Interior poles]
−∞
Note: Radius 𝑅 is taken so large these are the singularities of 𝑓(𝑧) lie within semicircle 𝐶𝑅.
141
∞ 𝒅𝒙
1. Evaluate ∫𝟎 𝟐 𝟐𝟐
(𝒙 +𝒂 )
𝟏
Sol: Here 𝑓(𝑥) = 𝟐 𝟐𝟐
(𝒙 +𝒂 )
142
( ) 𝟏
= 𝟏 𝟐 = 𝑓(𝑥)
𝑓 −
𝑥 = 𝟐 (𝒙𝟐+𝒂𝟐)
((−𝒙)𝟐+𝒂 𝟐)
& C is the contour consisting of the semi circle 𝐶𝑅 of radius R together with the real
axis from –R to R.
The poles of 𝑓(𝑧) are given by (𝒛𝟐 + 𝒂𝟐)𝟐=0
⇒ 𝑧 = ±𝑎𝑖 , ±𝑎𝑖
The poles are 𝑧 = 𝑎𝑖 , 𝑧 = − 𝑎𝑖 of order 2
The only pole 𝑧 = 𝑎𝑖 lies inside semi circle 𝐶𝑅
Residue of 𝑓(𝑧) at 𝑧 = 𝑎𝑖
𝑑 𝟏
=𝐿𝑡 [ (𝑧 − 𝑎𝑖)2. ]
𝑧→𝑎𝑖 𝑑𝑧 𝟐
(𝒛𝟐+𝒂𝟐)
𝑑 𝟏
= 𝐿𝑡 [ (𝑧 − 𝑎𝑖)2. ]
𝑧→𝑎𝑖 𝑑𝑧 (𝑧+𝑎𝑖)2(𝑧−𝑎𝑖)2
=𝐿𝑡 [𝑑 . 𝟏
]
𝑧→𝑎𝑖 𝑑𝑧 (𝑧+𝑎𝑖)2
−𝟐
=𝐿𝑡𝑧→𝑎𝑖 [ (𝑧+𝑎𝑖)3]
𝑅= 1
𝑖 4𝑎3𝑖
Hence by Residue Theorem, ∫𝑐 𝑓(𝑧)dz = 2𝜋𝑖 × [𝑠𝑢𝑚 𝑜𝑓 𝑡ℎ𝑒 𝑟𝑒𝑠𝑖𝑑𝑢𝑒𝑠 𝑎𝑡 Interior poles]
1
= 2𝜋𝑖 ×
4𝑎3𝑖
𝜋
=
2𝑎3
𝑅 𝜋
∫𝐶𝑅 𝑓(𝑧)𝑑𝑧 + ∫−𝑅 𝑓(𝑥)𝑑𝑥 = 2𝑎3 (2)
143
We know that ∫ |𝑓(𝑧)|𝑑𝑧 → 0 as 𝑅 → ∞
𝐶𝑅
∞ 𝜋
Hence, ∫−∞ 𝑓(𝑥)𝑑𝑥 = 3 (3)
2𝑎
144
1 ∞ 𝟏 1
∞ 𝟏 𝑑𝑥 = 𝑑𝑥 = 𝜋
= 𝜋
∫0 𝟐 2
∫−∞ 2 2𝑎3 4𝑎3
(𝒙𝟐 +𝒂𝟐 ) 𝟐 𝟐 𝟐
(𝒙 +𝒂 )
∞ 𝟏
Note: Evaluate ∫0 𝟐 𝟐 𝑑𝑥 using Residue Theorem
(𝒙 +𝒂 𝟐)
Assignment Questions:
∞ 𝟏 𝜋
1. Using the method of contour integration prove that ∫0 𝒙𝟔+𝟏 𝑑𝑥 = (or) Evaluate
3
∞ 𝟏
∫0 𝒙𝟔+𝟏 𝑑𝑥 using the Residue theorem.
∞
2. Evaluate by contour Integration 𝒙𝟐 𝑑𝑥
∫−∞ (𝒙𝟐+𝟏)(𝒙𝟐+𝟒)
∞ 𝟏
3. Evaluate by contour Integration ∫0 (𝒙𝟐+𝟏) 𝑑𝑥
∞ 𝒍𝒐𝒈 𝒙
4. Evaluate ∫0 (𝒙𝟐+𝟏) 𝑑𝑥
145
UNIT-V
CONFORMAL MAPPINGS
Introduction : In this unit we deal the special type of mappings 𝑤 = 𝑓(𝑧) , which are called
conformal mapping. These mappings are important in engineering mathematics in solving
various problems in two dimensional potential theory.
Basic Defintions:
The correspondence defined by the equation 𝑤 = 𝑓(𝑧) between the points in the Z-plane and
W-plane is called “Mapping” from Z-plane to the W-plane.
Conformal mapping :
Suppose under the transformation 𝑤 = 𝑓(𝑧), the poinrt 𝑃(𝑥0, 𝑦0) of the Z-plane is mapped
in to the point 𝑃′(𝑢0, 𝑣0) of the W-plane. Suppose 𝐶1 and 𝐶2 are any two curves intersecting
at the point 𝑃(𝑥0, 𝑦0). Suppose the mapping 𝑤 = 𝑓(𝑧) takes 𝐶1 and 𝐶2 in to the curves 𝑐′ and1
𝑐′ whic2h are intersecting at 𝑃′(𝑢0, 𝑣0) . If the transformation is such that the angles between 𝐶1
and 𝐶2 at (𝑥0, 𝑦0) is equal both in magnitude and direction to the angel between
𝑐′ and 𝑐′ at (𝑢0, 𝑣0) ,then it is said to be conformal transformation at (𝑥0, 𝑦0) .
1 2
Isogonal Transformation :
If the transformation preserves the only magnitude but not necessarily sense (direction) then
it is called isogonal mapping.
Critical point : the points where 𝑓′(𝑧) = 0 are called critical points.
Ordinary point : the points where 𝑓′(𝑧) ≠ 0 are called ordinary points.
146
Sol: 𝑓′(𝑧) = 0
⇒ 2𝑧 = 0
⇒𝑧=0
𝑓′(𝑧) = 𝑠𝑖𝑛𝑧
𝑓′(𝑧) = 0
𝑠𝑖𝑛𝑧 = 0
𝑧 = 𝑛𝜋 where 𝑛 = 0, ±1, ±2 − − − −
1.𝒘 = 𝒇(𝒛) = 𝒆𝒛
Standard Transformations :
1. Translation
2. Expansion or Contraction
3. Inversion
Note : if |𝑐| = 1 then 𝑤 = 𝑐𝑧 is called a pure rotation, since in this case there is no expansion
or contraction, but just a rotation through an angle of 𝛼.
Example
147
Prove that circles are invariant under the linear transformation 𝑤 = 𝑎𝑧 + 𝑐 (or) prove that
circles are mapped to circles under 𝑤 = 𝑎𝑧 + 𝑐.
Sol: Given the linear transformation = 𝑎𝑧 + 𝑐 , where 𝑎 & 𝑐 are complex constants.
We have transformation 𝑤 = 𝑎𝑧 + 𝑐
⇒ 𝑢 = 𝑎𝑥 + 𝑐1 , 𝑣 = 𝑎𝑦 + 𝑐2
𝑐2 + 𝑐2 𝐵𝑐1 𝑐𝑐2
𝐷′ = 𝐷 + 𝐴 ( 1 2) −
−
𝑎2 𝑎 𝑎
straight line.
Proof : let 𝐴(𝑥2 + 𝑦2) + 𝐵𝑥 + 𝐶𝑦 + 𝐷 = 0 -----------(1) is a circle (or) straight line (if A=0)
in Z-plane.
If A=0, & B & C≠ 0 (at least one) then equation (1) represents straight line.
We have 𝑧 = 𝑥 + 𝑖𝑦 and 𝑧̅ = 𝑥 − 𝑖𝑦
𝑧. 𝑧̅ = 𝑥2 + 𝑦2
148
𝑧+𝑧̅ 𝑧−𝑧̅
𝑥= , 𝑦= --------------------(2)
2 2𝑖
149
Substitute (2) in (1) then
𝑧 + 𝑧̅ 𝑧 − 𝑧̅
𝐴𝑧𝑧̅ + 𝐵 ( )+𝐶( )+ 𝐷 = 0
2 2𝑖
1 1
Substitute 𝑤 = ⇒𝑧=
𝑧 𝑤
1+1 1−1
1 𝑤 𝑤
̅ 𝑤 𝑤
̅) + 𝐷 = 0
⇒𝐴 +𝐵( )+𝐶(
𝑤𝑤
̅ 2 2𝑖
Equation (3) represents a straight line in W-plane if 𝐷 = 0 and 𝐵 & 𝐶 ≠ 0 (at least one )
150
Some special conformal Transformations :
1. 𝑤 = 𝑧2 2. 𝑤 = 𝑒 𝑧 3. 𝑤 = 𝑙𝑜𝑔𝑧
151
Problems :
1.Find the points at which 𝒘 = 𝒄𝒐𝒔𝒉𝒛 is not conformal.
𝑓′(𝑧) = 𝑠𝑖𝑛ℎ𝑧
𝑓′(𝑧) = 0
𝑠𝑖𝑛ℎ𝑧 = 0
𝑒𝑧 − 𝑒−𝑧
=0
2
⇒ 𝑒2𝑧 − 1 = 0
⇒ |𝑥 + 𝑖𝑦| = 2
⇒ √𝑥 2 + 𝑦2 = 2
Let 𝑤 = 𝑢 + 𝑖𝑣 and 𝑧 = 𝑥 + 𝑖𝑦
Given transformation is 𝑤 = 3𝑧
𝑢 + 𝑖𝑣 = 3(𝑥 + 𝑖𝑦)
𝑢 = 3𝑥 &𝑣 = 3𝑦
𝑢 𝑣
𝑥 = and 𝑦 =
3 3
𝑢 2𝑣 2
( ) +( ) = 4
3 3
𝑢2 + 𝑣2 = 36
152
Which is a circle in the W-plane with center at (0,0) & r=6.
𝟏
3. under the transformation 𝒘 = ,find the image of the circle |𝒛 − 𝟐𝒊| = 𝟐.
𝒛
1
Sol : 𝑤 =
𝑧
1
𝑧=
𝑤
1
𝑥 + 𝑖𝑦 = = 𝑢−𝑖𝑣
2 2
𝑢+𝑖𝑣 𝑢 +𝑣
𝑢
𝑥= 𝑦= −𝑣
-----------(1)
𝑢2+𝑣 2 𝑢2+𝑣2
|𝑧 − 2𝑖| = 2.
|𝑥 + 𝑖𝑦 − 2𝑖| = 2.
𝑥2 + (𝑦 − 2)2 = 4--------------(2)
⇒ 1 + 4𝑣 = 0
−1
⇒𝑣=
4
Which is a straight line parallel to X-axis in the W-plane.
𝟏 𝟏
4. Find the image of the infinite strip 𝟎 < 𝑦 < under the transformation 𝒘 = .
𝟐 𝒛
𝟏
Sol: here it is required to find the image of infinite strip 𝟎 < 𝑦 < in Z-plane under the map
𝟐
1
𝑤= .
𝑧
153
1
Given transformation 𝑤 =
𝑧
154
𝟏
𝒛=
𝒘
1 𝑢−𝑖𝑣
𝑥 + 𝑖𝑦 = =
𝑢+𝑖𝑣 𝑢2+𝑣 2
𝟏
Given strip in Z-plane is 𝟎 < 𝑦 <
𝟐
𝑢2 + (𝑣 + 1)2 = 1
1
and the circle 𝑢2 + (𝑣 + 1)2 = 1 in W-plane under the transformation 𝑤 = .
𝑧
𝟏
5. show that the image of the hyperbola 𝒙𝟐 − 𝒚𝟐 = 𝟏 under the transformation 𝒘 = is
𝒛
the lemniscate 𝝆𝟐 = 𝒄𝒐𝒔𝟐∅.
155
let 𝑧 = 𝑟𝑒𝑖𝜃
𝑤 = 𝑅𝑒𝑖∅
1
𝑅𝑒𝑖∅ =
𝑟𝑒𝑖𝜃
1
𝑅𝑒𝑖∅ = 𝑒−𝑖𝜃
𝑟
1
𝑅 = ,∅ = −𝜃
𝑟
Given hyperbola is 𝒙𝟐 − 𝒚𝟐 = 𝟏
𝑟2𝑐𝑜𝑠2𝜃 − 𝑟2𝑠𝑖𝑛2𝜃 = 1
𝑟2(𝑐𝑜𝑠2𝜃 − 𝑠𝑖𝑛2𝜃) = 1
𝑟2𝑐𝑜𝑠2𝜃 = 1
1
1 cos(−2∅) = 1 ( 𝜌 = ,∅ = −𝜃)
𝜌2 𝑟
𝜌2 = 𝑐𝑜𝑠2∅
6. Find and plot the image of the traingularregion with vertices at (0,0) (1,0)(0,1) under
the transformation 𝒘 = (𝟏 − 𝒊)𝒛 + 𝟑.
𝑢 + 𝑖𝑣 = (1 − 𝑖)(𝑥 + 𝑖𝑦) + 3
𝑢 + 𝑖𝑣 = (𝑥 + 𝑦 + 3) + 𝑖(𝑦 − 𝑥)
156
7. Find and plot the rectangular region 𝟎 ≤ 𝒙 ≤ 𝟐, 𝟎 ≤ 𝒚 ≤ 𝟐 under transformation 𝒘 =
𝒊𝝅
√𝟐𝒆 𝟒 𝒛 + (𝟏 − 𝟐𝒊).
𝑖𝜋
Sol: Given transformation is 𝑤 = √2𝑒 4 𝑧 + (1 − 2𝑖)
𝜋 𝜋
𝑢 + 𝑖𝑣 = √2 (𝑐𝑜𝑠 + 𝑖𝑠𝑖𝑛 ) (𝑥 + 𝑖𝑦) + (1 − 2𝑖)
4 4
1 1
= √2 ( + 𝑖 ) (𝑥 + 𝑖𝑦) + (1 − 2𝑖)
√2 √2
= (𝑥 − 𝑦) + 𝑖(𝑥 + 𝑦) + (1 − 2𝑖)
𝑢 + 𝑖𝑣 = (𝑥 − 𝑦 + 1) + 𝑖(𝑥 + 𝑦 − 2)
𝑢 = −(2 + 𝑣) + 1 ⇒ 𝑣 = −𝑢 − 1
= 2 in (1) then 𝑢 = 𝑥 − 1 , 𝑣 = 𝑥 ⇒ 𝑣 = 𝑢 + 1
𝑣 =𝑢+1
157
8. Find the image of the region in the Z-plane between the lines 𝒚 = 𝟎 & 𝑦 = 𝜋/2 under
the transformation 𝒘 = 𝒆𝒛.
𝑅𝑒𝑖∅ = 𝑒𝑥+𝑖𝑦
If 𝑦 = 0 then ∅ = 0 (fom (1)) represents radial line making an angle of zero radius with the
x-axis .
If 𝑦 = 𝜋/2 then ∅ = 𝜋/2 represents radial line making angle of 𝜋/2 radius with the X-axis.
𝑦 = 𝜋/2 in Z-plane is mapped onto the ray ∅ = 𝜋/2 excluding origin in W-plane.
Hence the infinite strip bounded by the lines 𝑦 = 0 and 𝑦 = 𝜋/2 is mapped on to the upper
quadrant of W-plane.
Assignment questions :
158
1
1. For the mapping 𝑤 = ,Find the image of the family of circles 𝑥2 + 𝑦2 = 𝑎𝑥 where 𝑎 is
𝑧
real.
1
2. Show that the transformation 𝑤= maps a circle to a circle or to a straight line if the
𝑧
3. Find the image of the domain in the Z-plane to the left of the line 𝑥 = −3 under
transformation 𝑤 = 𝑧2.
i) 𝑥 > 1 ii) 𝑦 > 0 iii)0 < 𝑦 < 1/2 under transformation 𝑤 = 1/𝑧.
⇒ 𝑤𝑐𝑧 + 𝑤𝑑 = 𝑎𝑧 + 𝑏
⇒ 𝑤𝑐𝑧 − 𝑎𝑧 + 𝑑𝑤 − 𝑏 = 0
⇒ 𝐴𝑧𝑤 + 𝐵𝑧 + 𝐶𝑤 + 𝐷 = 0 -----(2)
Where 𝐴 = 𝑐, 𝐵 = −𝑎, 𝐶 = 𝑑, 𝐷 = −𝑏
𝑏𝑐 ≠ 0
𝑎𝑧+𝑏
The bilinear transformation 𝑤 = , 𝑎𝑑 − 𝑏𝑐 ≠ 0 is a bijective from 𝐶 to 𝐶 .
𝑐𝑧+𝑑 ∞ ∞
Since 𝑎𝑑 − 𝑏𝑐 ≠ 0
𝑑𝑤
⇒ ≠0
𝑑𝑧
𝑎𝑧+𝑏
⇒ 𝑤 = 𝑇(𝑧) = is conformal transformation.
𝑐𝑧+𝑑
If 𝑎𝑑 − 𝑏𝑐 = 0 then 𝑑𝑤 = 0 ∀ 𝑧
𝑑𝑧
160
Then we say that every point of 𝑧 −plane is critical.
𝑎𝑧+𝑏
Note : Let the bilinear transformation 𝑤 =
𝑐𝑧+𝑑
Finding the Bilnear Transformation whose fixed point are 𝑎 and 𝖰 are given by 𝒘 =
𝒛−𝑎𝖰
𝒛−(𝑎+𝖰)+
Prop 3. Every bilinear transformation maps the totality of circles and straight lines in
Z-plane onto the totality of circles and straight lines the W-plane.
161
OR
162
Every bilinear transformation maps circles and straight lines into circles and straight
lines
𝑎𝑧+𝑏
Proof: Let the bilinear transformation 𝑤 = 𝑇(𝑧) = where 𝑎𝑑 − 𝑏𝑐 ≠ 0
𝑐𝑧+𝑑
𝑎 𝑏 𝑎 𝑏
(i). If 𝑐 = 0 then 𝑇(𝑧) = ( ) 𝑧 + ( ) = 𝐴𝑧 + 𝐵 where = ,𝐵 =
𝑑 𝑑 𝑑 𝑑
Clearly T is linear.
We know that image of any region in the Z-plane under the linear transformation has the
same.
i.e the transformation 𝑤 = 𝑇(𝑧) transforms circles & straight lines in to circles and straight
lines.
(ii). If 𝑐 ≠ 0 then
𝑎 𝑏𝑐−𝑎𝑑 1
𝑇(𝑧) = ( ) + ( ).
𝑑
𝑐 𝑐2 𝑧+
𝑐
𝑑 1 𝑏𝑐−𝑎𝑑 𝑎
Let 𝑇 (𝑧) = 𝑧 + , 𝑇 (𝑧) = , 𝑇 (𝑧) = . 𝑧 , 𝑇 (𝑧) = + 𝑧
1 𝑐 2 𝑧 3 𝑐2 4 𝑐
We know that (i) the inversion transformation maps circles and straight lines in to circles
Therefore the transformation transforms circles and straight lines into circles and straight
lines.
Therefore bilinear transformation 𝑇(𝑧), circles and straight lines into circles and straight
lines.
Cross Ratio :
For three distinct points 𝑧1, 𝑧2, 𝑧3 in 𝐶∞ then the cross ratio of 𝑧, 𝑧1, 𝑧2, 𝑧3 is denoted
by
163
1 2 3 1 2 3 (𝑧1−𝑧2)(𝑧3−𝑧)
164
Prop4: The cross ratio is invariant under a bilinear transformation
(or)
𝑎, 𝑏, 𝑐, 𝑑 ∈ ℂ
It is required to prove that (𝑧, 𝑧1, 𝑧2,𝑧3) = (𝑇(𝑧), 𝑇(𝑧1), 𝑇(𝑧2), 𝑇(𝑧3))
= 𝑎𝑧+𝑏 − 𝑎𝑧𝑘+𝑏
𝑐𝑧+𝑑 𝑐𝑧𝑘+𝑑
(𝑎𝑧+𝑏)(𝑐𝑧𝑘+𝑑)−(𝑎𝑧𝑘+𝑏)(𝑐𝑧+𝑑)
= (𝑐𝑧+𝑑)(𝑐𝑧𝑘+𝑑)
(𝑎𝑑−𝑏𝑐)(𝑧−𝑧 )
𝑘
𝑤 − 𝑤𝑘 = (𝑐𝑧+𝑑)(𝑐𝑧𝑘+𝑑)
(𝑎𝑑−𝑏𝑐)(𝑧𝑖−𝑧𝑗)
𝑤𝑖 − 𝑤𝑗 = (𝑐𝑧𝑖+𝑑)(𝑐𝑧𝑗+𝑑)
= (𝑧−𝑧1)(𝑧2−𝑧3)
(𝑧1−𝑧1)(𝑧3−𝑧)
Note1: To find the bilinear transformation = 𝑇(𝑧) , we can use the condition
(𝑤−𝑤1)(𝑤2−𝑤3)
= (𝑧−𝑧1)(𝑧2−𝑧3)
(𝑤1−𝑤2)(𝑤3−𝑤) (𝑧1−𝑧2)(𝑧3−𝑧)
165
𝑎𝑧+𝑏
Note 2: To find the bilinear transformation we can also use the formula 𝑤 =
𝑐𝑧+𝑑
166
∞−𝑖 = log 𝑛−𝑖 = 1 ,similarly ∞−𝑤 = 1
Note 3: 𝑛→∞ 𝑛−𝑤 ∞−𝑖
∞−𝑤
Problems:
1: Find the Bilinear transformation which maps the point (-1,0,1) in to the points (0,i,3i)
𝑤1 = −1, 𝑤2 = 0, 𝑤3 = 1
(𝑤−𝑤1)(𝑤2−𝑤3)
we know that = (𝑧−𝑧1)(𝑧2−𝑧3)
(𝑤1−𝑤2)(𝑤3−𝑤) (𝑧1−𝑧2)(𝑧3−𝑧)
( 𝑤 )(𝑖−3𝑖 ) (𝑧+1)
=
(− 𝑖 )(3𝑖−𝑤) (1− 𝑍 )
( 2𝑤 ) (𝑧+1)
=
(3𝑖−𝑤) (1− 𝑍 )
( 2 w )(1 − Z) = (z + 1)(3i − w)
2w − 2wZ = 3i z − w z + 3i − w
w[2 − 2z + z + 1] = 3i[z + 1]
w(−z + 3) = 3i[z + 1]
3i[z+1]
w =
3−z
w = T(z) = 3i[z+1]
3−z
𝑖. 𝑒 𝑓(𝑧) = 𝑧
2𝑖−6𝑧
(i) 𝑤 = 𝑓(𝑧) =
𝑖𝑧−3
𝑓 (𝑧) = 𝑧
167
2i−6z = 𝑧
iz−3
168
2𝑖 − 6𝑧 = 𝑖𝑧2 − 3𝑧
𝑖𝑧2 + 3𝑧 − 2𝑖 = 0
𝑧2 − 3𝑖𝑧 − 2 = 0
It is a quadratic equation
3i± √9i2−4.1.(−z)
𝑍 =
2
𝑍 = 𝑖, 2𝑖
𝒘 = 𝟓𝒊, ∞, −𝒊/𝟑.
az+b
soln: let the bilinear transformation be 𝑤= -----(1)
cz+d
−ai+b
∞ = ; 1 = −ai+b ;−ci + d = 0 ------ (3)
−ci+d 0 −ci+d
2(−𝑖𝑑) – 𝑖𝑑 = 6𝑖𝑎 + 15 𝑖𝑑
𝑎 = −3𝑑
Sub 𝑎, 𝑏, 𝑐 in (1)
−3𝑑𝑧 + 5𝑖𝑑
𝑤=
−𝑖𝑑𝑧 + 𝑑
−3𝑧+5𝑖
𝑤 =
−𝑖𝑧+1
169
𝑤 = −(3iz+5)
z+1
170
Prob4. Find the bilinear transformation that maps the points (∞, 𝒊, 𝟎) into the points
(𝟎, 𝒊, ∞).
(𝑤−𝑤1)(𝑤2−𝑤3) (𝑧−𝑧1)(𝑧2−𝑧3)
Sol: we know that =
(𝑤1−𝑤2)(𝑤3−𝑤) (𝑧1−𝑧2)(𝑧3−𝑧)
(𝑤−0)(𝑖−∞) (𝑧−∞)(𝑖−0)
=
(0−𝑖)(∞−𝑤) (∞−𝑖)(0−𝑧)
1
𝑤=−
𝑧
𝒛−𝒊
Prob 5. Show that transformation 𝒘 = maps the real axis in the Z-plane in to the
𝒛+𝒊
unit circle |𝒘| = 𝟏 in the W-plane.
𝒛−𝒊
Sol:Given transformation is 𝒘 =
𝒛+𝒊
|𝒛 − 𝒊| = |𝒛 + 𝒊|
x2 + (y − 1)2 = x2 + (y + 1)2
x2 + 𝑦2 − 2y + 1 = x2 + y2 + 2y + 1
4𝑦 = 0
̅ = 𝑧̅ +𝑖
𝑤
𝑧−
̅ 𝑖
𝑧−𝑖 𝑧̅ +𝑖
𝑤𝑤
̅ −1 = . −1
𝑧+𝑖 𝑧−
̅ 𝑖
(̅𝑧+𝑖)(𝑧−𝑖)−(𝑧+𝑖)(𝑧̅−𝑖)
=
(̅𝑧−𝑖)(𝑧+𝑖)
2𝑖(𝑧−𝑧̅)
=
|𝑧+𝑖|2
−4𝑦
𝑤𝑤
̅ −1 =
|𝑧+𝑖|2
−4𝑦
|𝑤|2 − 1 = --------------(1)
|𝑧+𝑖|2
171
Given |𝒘| ≤ 𝟏
i.e img(z)>0
Hence |𝑤| ≤ 1 is transformed into upper half plane (i.e img(z)>0 ) unde
𝑧−𝑖
transformation 𝑤 = .
𝑧+𝑖
𝟓−𝟒𝒛
Prob7. Show that the relation 𝒘 = transforms the circle |𝒛| = 𝟏 into a circle of
𝟒𝒛−𝟐
|𝒛| = 𝟏
𝟓+𝟐𝒘
| |=1
𝟒(𝒘+𝟏)
𝒘 = 𝒖 + 𝒊𝒗
172