Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Practical 12

Ishita Aneja
7542
Use ML - inequality to show that |∫C 1 / (z ^2 + 1) ⅆ z| ⩽ 1 / 2√ 5 where C is the straight line segment
from 2 to 2 + ι. While solving, represent the distance from the point z to the points ι and -ι respec-
tively i.e. |z + ι| and |z - ι| on the Complex-plane C.
In[ ]:= f[z_] := 1 / (z ^ 2 + 1);
g[t_] := 2 + I * t;
1
val =  f[g[t]] * g '[t] ⅆ t;
0
ComplexExpand[val]

3π Log[2] Log[8]
Out[]= - ArcTan[2] + ⅈ - +
8 2 4

In[ ]:= N[Abs[ComplexExpand[val]]]


N1 / 2 5

Out[]= 0.187249

Out[]= 1.11803

N[Abs[ComplexExpand[val]]] ≤ N1 / 2 5
Thus we get the result.
2 Practical12_7495.nb

In[ ]:= Show[Graphics[{Purple, Arrow[{{2, 0}, {2, 1}}], Red,


Arrow[{{2, 1}, {0, 1}}], Green,
Arrow[{{2, 0}, {0, - 1}}], Blue,
Arrow[{{2, 1 / 2}, {0, 1}}], Magenta, Arrow[{{2, 1 / 2}, {0, - 1}}]}], Axes -> True]
1.0

0.5

Out[]=
0.5 1.0 1.5 2.0

-0.5

-1.0

You might also like