Math 715 Homework 1 Solutions

Size: px
Start display at page:

Download "Math 715 Homework 1 Solutions"

Transcription

1 . [arrier, Krook and Pearson Section 2- Exercise ] Show that no purely real function can be analytic, unless it is a constant. onsider a function f(z) = u(x, y) + iv(x, y) where z = x + iy and where u and v are real functions. For f to be purely real means v(x, y) =. For f to be analytic means u x = v y and u y = v x hold at every point in the complex plane. Therefore, if f is a purely-real analytic function, it follows that u x = and u y =. Now u x = implies for y fixed that the function x u(x, y ) is constant and similarly u y = implies for x fixed that the function y u(x, y) is constant. Let c = u(x, y ). onsider any point x +iy in the complex plane. Since x u(x, y ) is constant holding y fixed, then u(x, y ) = u(x, y ) = c. Since y u(x, y) is constant holding x fixed, then u(x, y ) = u(x, y ) = c. It follows that u is identically equal to c throughout the entire complex plane. Therefore f is constant.

2 2. [arrier, Krook and Pearson Section 2-2 Exercise ] Evaluate 3 2i +i sin z dz in two ways. First by choosing any path between the two end points and using real integrals as in f(z) dz = (u dx v dy) + i (u dy + v dx) (2-5) and second by use of an indefinite integral. Show that the inequality f(z) dz f(z) dz ML (2-6) where f M and L is the length of is satisfied. The trigonometric identities will be used in this exercise. First, consider the path given by sin z = sin(x + iy) = sin x cosh y + i cos x sinh y cos z = cos(x + iy) = cos x cosh y i sin x sinh y +i 3 2i which may be written as the sum of the paths [γ ] and [γ 2 ] where γ (t) = + i( 3t) and γ 2 (t) = ( + 2t) 2i. Since sin z dz = (sin x cosh y dx cos x sinh y dy) + i (sin x cosh y dy + cos x sinh y dx), compute the real path integrals [γ ] 2 (sin x cosh y dx cos x sinh y dy) = cos sinh y dy = cos (cosh 2 cosh ) [γ 2 ] (sin x cosh y dx cos x sinh y dy) = 3 2 sin x cosh 2 dx = (cos cos 3) cosh 2

3 2 i (sin x cosh y dy + cos x sinh y dx) = i sin cosh y dy = i sin (sinh 2 + sinh ) [γ ] 3 i (sin x cosh y dy + cos x sinh y dx) = i cos x sinh 2 dx = i(sin sin 3) sinh 2 [γ 2 ] and add them to obtain sin z dz = cos cosh cos 3 cosh 2 i ( sin sinh + sin 3 sinh 2 ). This finishes the computation using real path integrals. Second, compute using an indefinite integral to obtain 3 2i +i sin z dz = cos(3 2i) + cos( + i) = cos 3 cosh 2 i sin 3 sinh 2 + cos cosh i sin sinh. This answer is the same as the answer found using the path integrals. We now show inequality (2-6) is satisfied. The term of the left hand side is To approximate the integral sin z dz = cos( + i) cos(3 2i) use numerical techniques. The Maple script i sin z dz # ompute integral f(z) dz along the path gamma+gamma2 2 restart; 3 f:=z->sin(z); 4 gamma:=t->+i*(-3*t); 5 gamma2:=t->(+2*t)-2*i; 6 I:=Integrate(abs(f(gamma(t))*diff(gamma(t),t)),t=..); 7 F:=evalf(I); 8 I2:=Integrate(abs(f(gamma2(t))*diff(gamma2(t),t)),t=..); 9 F2:=evalf(I2); print("the integral f(z) dz is approximately", F+F2); gives the output f := z -> sin(z) gamma := t -> + ( - 3 t) I gamma2 := t -> 2 t I 3

4 / I := 3 sin( + ( - 3 t) I) dt / F := / I2 := 2 sin(2 t I) dt / F2 := "The integral f(z) dz is approximately", Therefore Finally we compute M using Maple sin z dz # Find the maximum value of f(z) on gamma and gamma2 2 restart; 3 _EnvAllSolutions:=true; 4 5 f:=z->sin(z); 6 g:=t->+i*(-3*t); 7 ff:=f(g(t))*conjugate(f(g(t))) assuming t::real; 8 dff:=diff(ff,t); 9 cp:=solve(dff=,t); k:=; for j from to nops([cp]) 2 do 3 for i from -3 to 3 4 do 5 c:=evalf(subs(_z=i,cp[j])); 6 if(abs(im(c))<. and Re(c)< and Re(c)>) 7 then 8 k:=k+; 9 cpn[k]:=abs(c); 2 end 2 end 4

5 22 end; 23 cps:=[.,seq(cpn[n],n=..k),.]; 24 v:=seq(abs(f(g(cps[n]))),n=..nops(cps)); 25 print("the maximum of f(z) on gamma is",max(v)); g:=t->(+2*t)-2*i; 28 ff:=f(g(t))*conjugate(f(g(t))) assuming t::real; 29 dff:=diff(ff,t); 3 cp:=solve(dff=,t); 3 k:=; 32 for j from to nops([cp]) 33 do 34 for i from -3 to 3 35 do 36 c:=evalf(subs(_z2=i,cp[j])); 37 if(abs(im(c))<. and Re(c)< and Re(c)>) 38 then 39 k:=k+; 4 cpn[k]:=abs(c); 4 end 42 end 43 end; 44 cps:=[.,seq(cpn[n],n=..k),.]; 45 v2:=seq(abs(f(g(cps[n]))),n=..nops(cps)); 46 print("the maximum of f(z) on gamma2 is",max(v2)); print("the maximum of f(z) on is", max(v,v2)); 49 print("lm is",5*max(v,v2)); with the results _EnvAllSolutions := true f := z -> sin(z) g := t -> + ( - 3 t) I ff := sin( + ( - 3 t) I) sin( - ( - 3 t) I) dff := -3 I cos( + ( - 3 t) I) sin( - ( - 3 t) I) + 3 I sin( + ( - 3 t) I) cos( - ( - 3 t) I) / 2 /2 \ - + ( + tan(2) ) cp := -/3 I + I - arctan( ) - Pi _Z~, \ tan(2) / / 2 /2 \ 5

6 + ( + tan(2) ) -/3 I + I + arctan( ) - Pi _Z~ \ tan(2) / k := cps := [., ,.] v := , , "The maximum of f(z) on gamma is", g := t -> 2 t I ff := sin(2 t I) sin(2 t I) dff := 2 cos(2 t I) sin(2 t I) + 2 sin(2 t I) cos(2 t I) 2 /2 + ( - tanh(4) ) Pi _Z2~ cp := -/2 + I - /2 I arctanh( ) , tanh(4) 2 2 /2 - + ( - tanh(4) ) Pi _Z2~ -/2 + I + /2 I arctanh( ) tanh(4) 2 k := cps := [., ,.] v2 := , , "The maximum of f(z) on gamma2 is", "The maximum of f(z) on is", "LM is", Therefore M and L = = 5 so that LM Since we have shown that inequality (2-6) is satisfied for the curve. 6

7 3. [arrier, Krook and Pearson Section 2-2 Exercise 8a] Show that formal, term-by-term differentiation, or integration, of a power series yields a new power series with the same radius of convergence. Term-by-term Differentiation. Let f(z) = n= a nz n have radius of convergence R and g(z) = n= na nz n have radius of convergence r. laim R = r. First show r R. Let z be such that < z < R. hoose w such that z < w < R. Then by (-5) on page 9 we have that the series for f(w) converges absolutely. Thus, a n w n <. n= Now, let α = z / w. Then < α < and so nα n as n. It follows that nα n is bounded by some constant A so that nα n A for all n. Now, n= n a n z n = z n= n a n w n α n A z a n w n < shows that the series for g(z) converges for any z < R. It follows that r R. Second show that R r. Suppose z < r. Then by (-5) on page 9 we have that the series for g(z) converges absolutely. Thus, Now, n= n a n z n <. n= a n z n = a + z a n z n a + z n a n z n <. n= shows that the series for f(z) converges for any z < r. It follows that R r. Term-by-term Integration. Let f(z) = n= a nz n have radius of convergence R and h(z) = n= n+ a nz n+ have radius of convergence ρ. laim R = ρ. First show that R ρ. Suppose z < R. Then by (-5) on page 9 we have that the series for f(z) converges absolutely. Thus, Now, n= a n z n <. n= n + a n z n+ z n= n= a n z n <. shows that the series for h(z) converges for any z < R. It follows that R ρ. 7 n=

8 Second show R ρ. Let z be such that < z < ρ. hoose w such that z < w < ρ. Then by (-5) on page 9 we have that the series for h(w) converges absolutely. Thus, n= n + a n w n+ <. Now, let α = z / w. Let A be the bound so that nα n A for all n. Now, n= a n z n = z n= n + a n w n+ (n + )α n+ A z n= n + a n w n+ < shows that the series for f(z) converges for any z < ρ. It follows that R ρ. 8

9 4. [arrier, Krook and Pearson Section 2-2 Exercise 8b] The uniform-convergence property of a power series implies that term-by-term integration yields the integral of the sum function. Show that the integrated sum function is single valued and analytic within the circle of convergence. Let R be the radius of convergence of the infinite series defining f and h in part a. Let n n f n (z) = a k z k and h n (z) = k + a kz k+. k= Suppose ξ and z are such that ξ < R and z < R. Let Γ = { γ(t) : t [, t] } be any path such that γ() = z, γ() = ξ and γ(t) < R for t [, ]. Since f n is a polynomial, it is analytic. Therefore the path integral along Γ is path independent and since h n = f n we obtain ξ f n (ζ) dζ = f n (ζ) dζ = h n (ξ) h n (z). Γ z Since γ(t) < R for t [, ] then there is η > such that γ(t) R η for t [, ]. From the results on page 9 we obtain that ( ) ( ) f n γ(t) f γ(t) uniformly in t as n. Therefore, It follows that lim f n (ζ) dζ = lim n Γ Γ = n k= f n (γ(t))γ (t) dt f(γ(t))γ (t) dt = Γ f(ζ) dζ. ( f(ζ) dζ = lim hn (ξ) h n (z) ) = h(ξ) h(z). n Since this equality holds for any Γ inside the radius of convergence, the integral is path independent. Therefore, we may write ξ z f(ζ) dζ = h(ξ) h(z) for any z and ξ such that ξ < R and z < R where the integral is to be interpreted as a path integral along along any path from z to ξ that lies strictly inside the radius of convergence. Since h is single valued then the integrated sum function is single valued. We now claim h is analytic and h (z) = f(z). Let ϵ >. Since f is continuous at z there is δ > so that ζ z < δ implies f(ζ) f(z) < ϵ. Define γ(t) = ξ( t) + zt so that γ (t) = z ξ. Now, ξ z < δ implies γ(t) z < δ for t [, ] and therefore h(ξ) h(z) f(ζ) f(z) f(γ(t)) f(z) f(z) = dζ = γ (t) dt ξ z Γ z ξ z ξ f(γ(t)) f(z) dt < ϵ dt = ϵ. onsequently h (z) = f(z) for every z < R. 9

10 5. [arrier, Krook and Pearson Section 2-2 Exercise 8c] Show that a power series converges to an analytic function within its circle of convergence. onsider the power series for f(z) defined above with radius of convergence equal to R. By part a the function g(z) also has radius of convergence equal to R. Since f(z) may be obtained from g(z) through term by term integration of g(z) we have by part b that f (z) = g(z) for every z such that z < R. Thus, f is differentiable and therefore analytic in its circle of convergence.

11 6. [arrier, Krook and Pearson Section 2-3 Exercise ] Use auchy s integral formula to evaluate the integral around the unit circle z = of sin z 2z + i, ln(z + 2) z + 2, z 3 + asinh(z/2) z 2 + iz + i and cot z. Let D = { z : z < } be the unit disk and Γ = D be its boundary oriented in the positive (counterclockwise) direction. Since sin z is analytic on D and i/z is contained within it, then auchy s formula implies Γ sin z 2z + i = 2 Γ sin z z + i/2 = πi sin( i/2) = πi sin(i/2). Since then sin z = exp(iz) exp( iz) 2i sin(i/2) = exp( /2) exp(/2) 2i exp(/2) exp( /2) = i 2 = i sinh(/2). It follows that Γ sin z 2z + i = π sinh(/2). For the next integral note that, by definition, the principle branch ln z of the logarithm is the inverse of the function z exp(z): { x + iy : x R and y ( π, π] }. Therefore ln z is analytic on the domain \ (, ] and consequently ln z + 2 is analytic on \ (, 2]. It follows that ln z + 2 z + 2 is analytic in an open set containing D. By auchy s theorem we have For the next integral note that Γ ln(z + 2) z + 2 =. sinh z = exp(z) exp( z) 2 Setting ψ = sinh z and ω = exp z yields 2ωψ = ω 2. ( )

12 ompleting the square and factoring yields (ω ψ) 2 = ψ 2 +. We would like to take square roots to solve for ω. Recall that the principle branch of the square root function is defined as re iθ re iθ/2 for θ ( π, π]. This function is analytic on \ (, ]. The only time ψ 2 + (, ] is when Therefore the map ψ i(, ] or ψ i[, ). ψ ψ + ψ 2 + is analytic on \ ( i(, ] i[, ) ). From ( ) observe that if ω then ψ R. However, ψ R implies ω = ψ + ψ 2 + >, which is a contradiction. Therefore, it can t happen that ω. onsequently the function ψ log(ψ + ψ 2 + ) is analytic on \ ( i(, ] i[, ) ). As a result asinh(z) = log(z + z 2 + ) is an inverse to sinh(z) which is analytic on \ ( i(, ] i[, ) ). In particular sinh(z/2) is analytic on a neighborhood of the unit disk D. Note that z 2 + iz + i = (z z )(z z 2 ) where z = i + 4i > and z 2 = i 4i <. 2 2 Therefore z 3 + asinh(z/2) z z is analytic on D. It follows from auchy s formula that z 3 + asinh(z/2) Γ z 2 dz = 2πi z3 2 + asinh(z 2 /2) i. + iz + i z 2 z For the final integral note that cot z = cos z sin z and that sin z = ( ) k ( (2k + )! z2k+ = z ( ) k (2k + )! z2k) = z sinc z, k= where sinc z is defined by the absolutely convergent series in parenthesis shown above. Since the only zeros of sin z are z = kπ where k Z then the only zeros of sinc z are for z = kπ where k Z \ {}. It follows that cos z sinc z is analytic on D. onsequently ( cos ) cot z dz = 2πi = 2πi. sinc Γ k= 2

13 7. [arrier, Krook and Pearson Section 2-3 Exercise 2] If Φ(z) is analytic in a simply connected region in which a closed contour is drawn, obtain all possible values of where z is not a point on itself. ζ 2 z 2 Let = Ω be the boundary of an open set and S = Ω be a set on which the Green s theorem holds. onsider separately two cases. The first where z = and the second where z. If z =, the possible values of the integral in question are given by { 2πiΦ ζ 2 = () for Ω for Ω. If z, we note that ζ 2 z 2 = (ζ z)(ζ + z). Therefore, the possible values are ζ 2 z 2 = πiφ(z)z πiφ( z)z for z Ω and z Ω πiφ(z)z for z Ω and z Ω πiφ( z)z for z Ω and z Ω for z Ω and z Ω. If one also considers closed contours that do not necessarily bound a domain, then the contours may wind around the singularities multiple times. In this case we obtain the following possibilities where k, k, k 2 Z. 2πikΦ () and πik Φ(z)z πik 2 Φ( z)z 3

14 8. [arrier, Krook and Pearson Section 2-3 Exercise 3] If n is an integer, positive or negative, and if is a closed contour around the origin, use f (n) (z) = n! 2πi f(ζ) dζ (2 4) (ζ z) n+ to show that dz = unless n =. zn If n then /z n is analytic. Therefore, auchy s theorem implies dz z n =. If n >, we write f(z) = so that f (n ) (z) =. Then (2-4) implies z n dz = 2πi (n )! f (n ) () =. Finally, if n = then 2π z dz = 2π e it ieit dt = idt = 2πi which is non-zero. 4

15 9. [arrier, Krook and Pearson Section 2-3 Exercise 6] Show, that if Φ(z) is any function continuous on and if a function f(z) is defined for z include by f(z) = 2πi ζ z dζ then f(z) is analytic inside. Invent an example to illustrate the fact that, as an interior point z approaches a boundary point z, then f(z) need not approach Φ(z ). To show that f(z) is analytic, it is enough to show it has a derivative. By definition, f f(ξ) f(z) (z) = lim. ξ z ξ z Therefore, it remains to show that this limit exists. Now, f(ξ) f(z) ξ z = ξ z ( 2πi ζ ξ ) dζ ζ z = ( ) dζ 2πi (ζ ξ)(ζ z) = ( 2πi (ζ z) 2 + (ζ ξ)(ζ z) ) (ζ z) 2 dζ = ( 2πi (ζ z) 2 + ξ z ) (ζ ξ)(ζ z) 2 dζ = ( 2πi (ζ z) 2 + ξ z ) dζ. ζ ξ It follows that f(ξ) f(z) ξ z 2πi (ζ z) 2 dζ 2π ( ξ z ) (ζ z) 2 dζ ζ ξ Now since is continuous on it s maximum exists and we may define Since z then M = max { : ζ }. µ = dist(z, ) = min { z ζ : ζ } >. Finally, if ξ is close enough to z then also ξ. onsequently, ν = dist(ξ, ) >. By assumption = { γ(t) : t [, ] } where γ(t) is a differentiable function such that L = γ (t) dt <. 5

16 Therefore, follows that 2π ( ξ z ) (ζ z) 2 dζ ζ ξ 2π 2π Φ(γ(t)) ξ z (γ(t) z) 2 γ(t) ξ γ (t) dt ML µ 2 ξ z ν as ξ z. Therefore f(z) is analytic at each point inside. For an example where f(z) does not approach Φ(z ) as the interior point z approaches a boundary point z, consider Φ(z) = Re(z), z = and = { exp(it) : t [ π, π] }. Now However, 2πi Φ(z) = Re(z) as z f(ζ) ζ z dζ = π 2πi π cos t e it z ieit dt = 4πi = ζ + ζ 4πi ζ z dζ = 4πi = ( z 2 + ) = z 2 z z 2 2 π π e it + e it e it z ieit dt ζ 2 + (ζ z)ζ dζ as z. 6

17 . [arrier, Krook and Pearson Section 2-3 Exercise 7] A function Φ(z) is known to be continuous throughout a simply connected region and to have the property that Φ(z)dz = for any closed contour in that region. Show that Φ(z) must be analytic in that region. Let Ω be the simple region mentioned above. For z Ω fixed, define F (ξ) = Γ dζ for ξ Ω where Γ = { γ(t) : t [, ] } is any path that remains inside Ω and such that γ() = z and γ() = ξ. laim that F (ξ) is independent of the path Γ. onsider two different paths Γ i = { γ i (t) : t [, ] } such that γ i () = z and γ i () = ξ for i =, 2. Let = { c(t) : t [, 2] } where c(t) = { γ (t) for t [, ] γ 2 (2 t) for t (, 2]. Then is a closed contour and c(t) is pathwise differentiable. It follows that = dζ = = 2 Φ ( c(t) ) c (t)dt Φ ( γ (t) ) γ (t)dt + Setting s = 2 t so that ds = dt yields Therefore 2 2 Φ ( γ 2 (2 t) )( γ 2(2 t) ) dt. Φ ( γ 2 (2 t) )( γ 2(2 t) ) dt = Φ ( γ 2 (s) ) γ 2(s)ds. dζ = dζ, Γ Γ 2 which shows the integral defining F does not depend on the choice of path. laim F is differentiable on Ω. Let z Ω be fixed. Since Ω is open, there is α > such that B α (z) Ω. Therefore, for ξ such that ξ z < α, the straight line path Γ 3 = { γ 3 (t) : t [, ] } where γ 3 (t) = z + t(ξ z) lies entirely within Ω. It follows that F (ξ) F (z) ξ z = ( ξ z ) dζ dζ = ξ dζ. ξ z z z ξ z z 7

18 Therefore F (ξ) F (z) ξ z Φ(z) = ξ z ( Φ(γ3 (t)) Φ(z) ) γ 3(t)dt Φ(γ 3 (t)) Φ(z)) dt Given ε >, since Φ is continuous, there exists δ > with δ < α such that ξ z < δ implies Φ(ξ) Φ(z) < ε. It follows that F (ξ) F (z) ξ z Φ(z) ε whenever ξ z < δ. Therefore the limit exists and F (z) = Φ(z) for every z Ω. It follows that F is analytic and consequently that Φ is also analytic. 8

Syllabus: for Complex variables

Syllabus: for Complex variables EE-2020, Spring 2009 p. 1/42 Syllabus: for omplex variables 1. Midterm, (4/27). 2. Introduction to Numerical PDE (4/30): [Ref.num]. 3. omplex variables: [Textbook]h.13-h.18. omplex numbers and functions,

More information

Second Midterm Exam Name: Practice Problems March 10, 2015

Second Midterm Exam Name: Practice Problems March 10, 2015 Math 160 1. Treibergs Second Midterm Exam Name: Practice Problems March 10, 015 1. Determine the singular points of the function and state why the function is analytic everywhere else: z 1 fz) = z + 1)z

More information

Math 421 Midterm 2 review questions

Math 421 Midterm 2 review questions Math 42 Midterm 2 review questions Paul Hacking November 7, 205 () Let U be an open set and f : U a continuous function. Let be a smooth curve contained in U, with endpoints α and β, oriented from α to

More information

Qualifying Exam Complex Analysis (Math 530) January 2019

Qualifying Exam Complex Analysis (Math 530) January 2019 Qualifying Exam Complex Analysis (Math 53) January 219 1. Let D be a domain. A function f : D C is antiholomorphic if for every z D the limit f(z + h) f(z) lim h h exists. Write f(z) = f(x + iy) = u(x,

More information

Math 417 Midterm Exam Solutions Friday, July 9, 2010

Math 417 Midterm Exam Solutions Friday, July 9, 2010 Math 417 Midterm Exam Solutions Friday, July 9, 010 Solve any 4 of Problems 1 6 and 1 of Problems 7 8. Write your solutions in the booklet provided. If you attempt more than 5 problems, you must clearly

More information

Solutions to practice problems for the final

Solutions to practice problems for the final Solutions to practice problems for the final Holomorphicity, Cauchy-Riemann equations, and Cauchy-Goursat theorem 1. (a) Show that there is a holomorphic function on Ω = {z z > 2} whose derivative is z

More information

MA 201 Complex Analysis Lecture 6: Elementary functions

MA 201 Complex Analysis Lecture 6: Elementary functions MA 201 Complex Analysis : The Exponential Function Recall: Euler s Formula: For y R, e iy = cos y + i sin y and for any x, y R, e x+y = e x e y. Definition: If z = x + iy, then e z or exp(z) is defined

More information

MA3111S COMPLEX ANALYSIS I

MA3111S COMPLEX ANALYSIS I MA3111S COMPLEX ANALYSIS I 1. The Algebra of Complex Numbers A complex number is an expression of the form a + ib, where a and b are real numbers. a is called the real part of a + ib and b the imaginary

More information

MTH 3102 Complex Variables Solutions: Practice Exam 2 Mar. 26, 2017

MTH 3102 Complex Variables Solutions: Practice Exam 2 Mar. 26, 2017 Name Last name, First name): MTH 31 omplex Variables Solutions: Practice Exam Mar. 6, 17 Exam Instructions: You have 1 hour & 1 minutes to complete the exam. There are a total of 7 problems. You must show

More information

Exercises for Part 1

Exercises for Part 1 MATH200 Complex Analysis. Exercises for Part Exercises for Part The following exercises are provided for you to revise complex numbers. Exercise. Write the following expressions in the form x + iy, x,y

More information

MATH 417 Homework 4 Instructor: D. Cabrera Due July 7. z c = e c log z (1 i) i = e i log(1 i) i log(1 i) = 4 + 2kπ + i ln ) cosz = eiz + e iz

MATH 417 Homework 4 Instructor: D. Cabrera Due July 7. z c = e c log z (1 i) i = e i log(1 i) i log(1 i) = 4 + 2kπ + i ln ) cosz = eiz + e iz MATH 47 Homework 4 Instructor: D. abrera Due July 7. Find all values of each expression below. a) i) i b) cos i) c) sin ) Solution: a) Here we use the formula z c = e c log z i) i = e i log i) The modulus

More information

Math 185 Fall 2015, Sample Final Exam Solutions

Math 185 Fall 2015, Sample Final Exam Solutions Math 185 Fall 2015, Sample Final Exam Solutions Nikhil Srivastava December 12, 2015 1. True or false: (a) If f is analytic in the annulus A = {z : 1 < z < 2} then there exist functions g and h such that

More information

18.04 Practice problems exam 1, Spring 2018 Solutions

18.04 Practice problems exam 1, Spring 2018 Solutions 8.4 Practice problems exam, Spring 8 Solutions Problem. omplex arithmetic (a) Find the real and imaginary part of z + z. (b) Solve z 4 i =. (c) Find all possible values of i. (d) Express cos(4x) in terms

More information

1 Discussion on multi-valued functions

1 Discussion on multi-valued functions Week 3 notes, Math 7651 1 Discussion on multi-valued functions Log function : Note that if z is written in its polar representation: z = r e iθ, where r = z and θ = arg z, then log z log r + i θ + 2inπ

More information

Integration in the Complex Plane (Zill & Wright Chapter 18)

Integration in the Complex Plane (Zill & Wright Chapter 18) Integration in the omplex Plane Zill & Wright hapter 18) 116-4-: omplex Variables Fall 11 ontents 1 ontour Integrals 1.1 Definition and Properties............................. 1. Evaluation.....................................

More information

Complex Homework Summer 2014

Complex Homework Summer 2014 omplex Homework Summer 24 Based on Brown hurchill 7th Edition June 2, 24 ontents hw, omplex Arithmetic, onjugates, Polar Form 2 2 hw2 nth roots, Domains, Functions 2 3 hw3 Images, Transformations 3 4 hw4

More information

Topic 4 Notes Jeremy Orloff

Topic 4 Notes Jeremy Orloff Topic 4 Notes Jeremy Orloff 4 auchy s integral formula 4. Introduction auchy s theorem is a big theorem which we will use almost daily from here on out. Right away it will reveal a number of interesting

More information

1. The COMPLEX PLANE AND ELEMENTARY FUNCTIONS: Complex numbers; stereographic projection; simple and multiple connectivity, elementary functions.

1. The COMPLEX PLANE AND ELEMENTARY FUNCTIONS: Complex numbers; stereographic projection; simple and multiple connectivity, elementary functions. Complex Analysis Qualifying Examination 1 The COMPLEX PLANE AND ELEMENTARY FUNCTIONS: Complex numbers; stereographic projection; simple and multiple connectivity, elementary functions 2 ANALYTIC FUNCTIONS:

More information

Chapter 9. Analytic Continuation. 9.1 Analytic Continuation. For every complex problem, there is a solution that is simple, neat, and wrong.

Chapter 9. Analytic Continuation. 9.1 Analytic Continuation. For every complex problem, there is a solution that is simple, neat, and wrong. Chapter 9 Analytic Continuation For every complex problem, there is a solution that is simple, neat, and wrong. - H. L. Mencken 9.1 Analytic Continuation Suppose there is a function, f 1 (z) that is analytic

More information

POWER SERIES AND ANALYTIC CONTINUATION

POWER SERIES AND ANALYTIC CONTINUATION POWER SERIES AND ANALYTIC CONTINUATION 1. Analytic functions Definition 1.1. A function f : Ω C C is complex-analytic if for each z 0 Ω there exists a power series f z0 (z) := a n (z z 0 ) n which converges

More information

Exercises involving elementary functions

Exercises involving elementary functions 017:11:0:16:4:09 c M K Warby MA3614 Complex variable methods and applications 1 Exercises involving elementary functions 1 This question was in the class test in 016/7 and was worth 5 marks a) Let z +

More information

Math 411, Complex Analysis Definitions, Formulas and Theorems Winter y = sinα

Math 411, Complex Analysis Definitions, Formulas and Theorems Winter y = sinα Math 411, Complex Analysis Definitions, Formulas and Theorems Winter 014 Trigonometric Functions of Special Angles α, degrees α, radians sin α cos α tan α 0 0 0 1 0 30 π 6 45 π 4 1 3 1 3 1 y = sinα π 90,

More information

Chapter 11. Cauchy s Integral Formula

Chapter 11. Cauchy s Integral Formula hapter 11 auchy s Integral Formula If I were founding a university I would begin with a smoking room; next a dormitory; and then a decent reading room and a library. After that, if I still had more money

More information

MATH 722, COMPLEX ANALYSIS, SPRING 2009 PART 5

MATH 722, COMPLEX ANALYSIS, SPRING 2009 PART 5 MATH 722, COMPLEX ANALYSIS, SPRING 2009 PART 5.. The Arzela-Ascoli Theorem.. The Riemann mapping theorem Let X be a metric space, and let F be a family of continuous complex-valued functions on X. We have

More information

NATIONAL UNIVERSITY OF SINGAPORE Department of Mathematics MA4247 Complex Analysis II Lecture Notes Part II

NATIONAL UNIVERSITY OF SINGAPORE Department of Mathematics MA4247 Complex Analysis II Lecture Notes Part II NATIONAL UNIVERSITY OF SINGAPORE Department of Mathematics MA4247 Complex Analysis II Lecture Notes Part II Chapter 2 Further properties of analytic functions 21 Local/Global behavior of analytic functions;

More information

Considering our result for the sum and product of analytic functions, this means that for (a 0, a 1,..., a N ) C N+1, the polynomial.

Considering our result for the sum and product of analytic functions, this means that for (a 0, a 1,..., a N ) C N+1, the polynomial. Lecture 3 Usual complex functions MATH-GA 245.00 Complex Variables Polynomials. Construction f : z z is analytic on all of C since its real and imaginary parts satisfy the Cauchy-Riemann relations and

More information

Complex Analysis Qualifying Exam Solutions

Complex Analysis Qualifying Exam Solutions Complex Analysis Qualifying Exam Solutions May, 04 Part.. Let log z be the principal branch of the logarithm defined on G = {z C z (, 0]}. Show that if t > 0, then the equation log z = t has exactly one

More information

EE2007 Tutorial 7 Complex Numbers, Complex Functions, Limits and Continuity

EE2007 Tutorial 7 Complex Numbers, Complex Functions, Limits and Continuity EE27 Tutorial 7 omplex Numbers, omplex Functions, Limits and ontinuity Exercise 1. These are elementary exercises designed as a self-test for you to determine if you if have the necessary pre-requisite

More information

Part IB. Complex Analysis. Year

Part IB. Complex Analysis. Year Part IB Complex Analysis Year 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005 2018 Paper 1, Section I 2A Complex Analysis or Complex Methods 7 (a) Show that w = log(z) is a conformal

More information

(1) Let f(z) be the principal branch of z 4i. (a) Find f(i). Solution. f(i) = exp(4i Log(i)) = exp(4i(π/2)) = e 2π. (b) Show that

(1) Let f(z) be the principal branch of z 4i. (a) Find f(i). Solution. f(i) = exp(4i Log(i)) = exp(4i(π/2)) = e 2π. (b) Show that Let fz be the principal branch of z 4i. a Find fi. Solution. fi = exp4i Logi = exp4iπ/2 = e 2π. b Show that fz fz 2 fz z 2 fz fz 2 = λfz z 2 for all z, z 2 0, where λ =, e 8π or e 8π. Proof. We have =

More information

Solution for Final Review Problems 1

Solution for Final Review Problems 1 Solution for Final Review Problems Final time and location: Dec. Gymnasium, Rows 23, 25 5, 2, Wednesday, 9-2am, Main ) Let fz) be the principal branch of z i. a) Find f + i). b) Show that fz )fz 2 ) λfz

More information

MATH 452. SAMPLE 3 SOLUTIONS May 3, (10 pts) Let f(x + iy) = u(x, y) + iv(x, y) be an analytic function. Show that u(x, y) is harmonic.

MATH 452. SAMPLE 3 SOLUTIONS May 3, (10 pts) Let f(x + iy) = u(x, y) + iv(x, y) be an analytic function. Show that u(x, y) is harmonic. MATH 45 SAMPLE 3 SOLUTIONS May 3, 06. (0 pts) Let f(x + iy) = u(x, y) + iv(x, y) be an analytic function. Show that u(x, y) is harmonic. Because f is holomorphic, u and v satisfy the Cauchy-Riemann equations:

More information

Lecture 9. = 1+z + 2! + z3. 1 = 0, it follows that the radius of convergence of (1) is.

Lecture 9. = 1+z + 2! + z3. 1 = 0, it follows that the radius of convergence of (1) is. The Exponential Function Lecture 9 The exponential function 1 plays a central role in analysis, more so in the case of complex analysis and is going to be our first example using the power series method.

More information

MATH COMPLEX ANALYSIS. Contents

MATH COMPLEX ANALYSIS. Contents MATH 3964 - OMPLEX ANALYSIS ANDREW TULLOH AND GILES GARDAM ontents 1. ontour Integration and auchy s Theorem 2 1.1. Analytic functions 2 1.2. ontour integration 3 1.3. auchy s theorem and extensions 3

More information

Selected Solutions To Problems in Complex Analysis

Selected Solutions To Problems in Complex Analysis Selected Solutions To Problems in Complex Analysis E. Chernysh November 3, 6 Contents Page 8 Problem................................... Problem 4................................... Problem 5...................................

More information

Complex Function. Chapter Complex Number. Contents

Complex Function. Chapter Complex Number. Contents Chapter 6 Complex Function Contents 6. Complex Number 3 6.2 Elementary Functions 6.3 Function of Complex Variables, Limit and Derivatives 3 6.4 Analytic Functions and Their Derivatives 8 6.5 Line Integral

More information

Complex Analysis Math 185A, Winter 2010 Final: Solutions

Complex Analysis Math 185A, Winter 2010 Final: Solutions Complex Analysis Math 85A, Winter 200 Final: Solutions. [25 pts] The Jacobian of two real-valued functions u(x, y), v(x, y) of (x, y) is defined by the determinant (u, v) J = (x, y) = u x u y v x v y.

More information

Complex Analysis, Stein and Shakarchi Meromorphic Functions and the Logarithm

Complex Analysis, Stein and Shakarchi Meromorphic Functions and the Logarithm Complex Analysis, Stein and Shakarchi Chapter 3 Meromorphic Functions and the Logarithm Yung-Hsiang Huang 217.11.5 Exercises 1. From the identity sin πz = eiπz e iπz 2i, it s easy to show its zeros are

More information

Chapter Six. More Integration

Chapter Six. More Integration hapter Six More Integration 6.. auchy s Integral Formula. Suppose f is analytic in a region containing a simple closed contour with the usual positive orientation, and suppose z is inside. Then it turns

More information

Complex Variables. Cathal Ormond

Complex Variables. Cathal Ormond Complex Variables Cathal Ormond Contents 1 Introduction 3 1.1 Definition: Polar Form.............................. 3 1.2 Definition: Length................................ 3 1.3 Definitions.....................................

More information

F (z) =f(z). f(z) = a n (z z 0 ) n. F (z) = a n (z z 0 ) n

F (z) =f(z). f(z) = a n (z z 0 ) n. F (z) = a n (z z 0 ) n 6 Chapter 2. CAUCHY S THEOREM AND ITS APPLICATIONS Theorem 5.6 (Schwarz reflection principle) Suppose that f is a holomorphic function in Ω + that extends continuously to I and such that f is real-valued

More information

1. DO NOT LIFT THIS COVER PAGE UNTIL INSTRUCTED TO DO SO. Write your student number and name at the top of this page. This test has SIX pages.

1. DO NOT LIFT THIS COVER PAGE UNTIL INSTRUCTED TO DO SO. Write your student number and name at the top of this page. This test has SIX pages. Student Number Name (Printed in INK Mathematics 54 July th, 007 SIMON FRASER UNIVERSITY Department of Mathematics Faculty of Science Midterm Instructor: S. Pimentel 1. DO NOT LIFT THIS COVER PAGE UNTIL

More information

Exercises for Part 1

Exercises for Part 1 MATH200 Complex Analysis. Exercises for Part Exercises for Part The following exercises are provided for you to revise complex numbers. Exercise. Write the following expressions in the form x+iy, x,y R:

More information

Complex Variables Notes for Math 703. Updated Fall Anton R. Schep

Complex Variables Notes for Math 703. Updated Fall Anton R. Schep Complex Variables Notes for Math 703. Updated Fall 20 Anton R. Schep CHAPTER Holomorphic (or Analytic) Functions. Definitions and elementary properties In complex analysis we study functions f : S C,

More information

Definite integrals. We shall study line integrals of f (z). In order to do this we shall need some preliminary definitions.

Definite integrals. We shall study line integrals of f (z). In order to do this we shall need some preliminary definitions. 5. OMPLEX INTEGRATION (A) Definite integrals Integrals are extremely important in the study of functions of a complex variable. The theory is elegant, and the proofs generally simple. The theory is put

More information

Lecture 7 Local properties of analytic functions Part 1 MATH-GA Complex Variables

Lecture 7 Local properties of analytic functions Part 1 MATH-GA Complex Variables Lecture 7 Local properties of analytic functions Part 1 MATH-GA 2451.001 omplex Variables 1 Removable singularities 1.1 Riemann s removable singularity theorem We have said that auchy s integral formula

More information

Math 120 A Midterm 2 Solutions

Math 120 A Midterm 2 Solutions Math 2 A Midterm 2 Solutions Jim Agler. Find all solutions to the equations tan z = and tan z = i. Solution. Let α be a complex number. Since the equation tan z = α becomes tan z = sin z eiz e iz cos z

More information

= 2πi Res. z=0 z (1 z) z 5. z=0. = 2πi 4 5z

= 2πi Res. z=0 z (1 z) z 5. z=0. = 2πi 4 5z MTH30 Spring 07 HW Assignment 7: From [B4]: hap. 6: Sec. 77, #3, 7; Sec. 79, #, (a); Sec. 8, #, 3, 5, Sec. 83, #5,,. The due date for this assignment is 04/5/7. Sec. 77, #3. In the example in Sec. 76,

More information

9. Series representation for analytic functions

9. Series representation for analytic functions 9. Series representation for analytic functions 9.. Power series. Definition: A power series is the formal expression S(z) := c n (z a) n, a, c i, i =,,, fixed, z C. () The n.th partial sum S n (z) is

More information

13 Maximum Modulus Principle

13 Maximum Modulus Principle 3 Maximum Modulus Principle Theorem 3. (maximum modulus principle). If f is non-constant and analytic on an open connected set Ω, then there is no point z 0 Ω such that f(z) f(z 0 ) for all z Ω. Remark

More information

MA 412 Complex Analysis Final Exam

MA 412 Complex Analysis Final Exam MA 4 Complex Analysis Final Exam Summer II Session, August 9, 00.. Find all the values of ( 8i) /3. Sketch the solutions. Answer: We start by writing 8i in polar form and then we ll compute the cubic root:

More information

Lecture Notes Complex Analysis. Complex Variables and Applications 7th Edition Brown and Churchhill

Lecture Notes Complex Analysis. Complex Variables and Applications 7th Edition Brown and Churchhill Lecture Notes omplex Analysis based on omplex Variables and Applications 7th Edition Brown and hurchhill Yvette Fajardo-Lim, Ph.D. Department of Mathematics De La Salle University - Manila 2 ontents THE

More information

Functions of a Complex Variable and Integral Transforms

Functions of a Complex Variable and Integral Transforms Functions of a Complex Variable and Integral Transforms Department of Mathematics Zhou Lingjun Textbook Functions of Complex Analysis with Applications to Engineering and Science, 3rd Edition. A. D. Snider

More information

Complex Analysis. Travis Dirle. December 4, 2016

Complex Analysis. Travis Dirle. December 4, 2016 Complex Analysis 2 Complex Analysis Travis Dirle December 4, 2016 2 Contents 1 Complex Numbers and Functions 1 2 Power Series 3 3 Analytic Functions 7 4 Logarithms and Branches 13 5 Complex Integration

More information

Complex Variables. Instructions Solve any eight of the following ten problems. Explain your reasoning in complete sentences to maximize credit.

Complex Variables. Instructions Solve any eight of the following ten problems. Explain your reasoning in complete sentences to maximize credit. Instructions Solve any eight of the following ten problems. Explain your reasoning in complete sentences to maximize credit. 1. The TI-89 calculator says, reasonably enough, that x 1) 1/3 1 ) 3 = 8. lim

More information

MATH243 First Semester 2013/14. Exercises 1

MATH243 First Semester 2013/14. Exercises 1 Complex Functions Dr Anna Pratoussevitch MATH43 First Semester 013/14 Exercises 1 Submit your solutions to questions marked with [HW] in the lecture on Monday 30/09/013 Questions or parts of questions

More information

Math 220A Homework 4 Solutions

Math 220A Homework 4 Solutions Math 220A Homework 4 Solutions Jim Agler 26. (# pg. 73 Conway). Prove the assertion made in Proposition 2. (pg. 68) that g is continuous. Solution. We wish to show that if g : [a, b] [c, d] C is a continuous

More information

Math Spring 2014 Solutions to Assignment # 6 Completion Date: Friday May 23, 2014

Math Spring 2014 Solutions to Assignment # 6 Completion Date: Friday May 23, 2014 Math 11 - Spring 014 Solutions to Assignment # 6 Completion Date: Friday May, 014 Question 1. [p 109, #9] With the aid of expressions 15) 16) in Sec. 4 for sin z cos z, namely, sin z = sin x + sinh y cos

More information

INTRODUCTION TO COMPLEX ANALYSIS W W L CHEN

INTRODUCTION TO COMPLEX ANALYSIS W W L CHEN INTRODUTION TO OMPLEX NLYSIS W W L HEN c W W L hen, 1986, 28. This chapter originates from material used by the author at Imperial ollege, University of London, between 1981 and 199. It is available free

More information

1 Holomorphic functions

1 Holomorphic functions Robert Oeckl CA NOTES 1 15/09/2009 1 1 Holomorphic functions 11 The complex derivative The basic objects of complex analysis are the holomorphic functions These are functions that posses a complex derivative

More information

Solutions for Problem Set #5 due October 17, 2003 Dustin Cartwright and Dylan Thurston

Solutions for Problem Set #5 due October 17, 2003 Dustin Cartwright and Dylan Thurston Solutions for Problem Set #5 due October 17, 23 Dustin Cartwright and Dylan Thurston 1 (B&N 6.5) Suppose an analytic function f agrees with tan x, x 1. Show that f(z) = i has no solution. Could f be entire?

More information

Topic 2 Notes Jeremy Orloff

Topic 2 Notes Jeremy Orloff Topic 2 Notes Jeremy Orloff 2 Analytic functions 2.1 Introduction The main goal of this topic is to define and give some of the important properties of complex analytic functions. A function f(z) is analytic

More information

Introduction to Complex Analysis. Michael Taylor

Introduction to Complex Analysis. Michael Taylor Introduction to Complex Analysis Michael Taylor 2 Contents 0. Complex numbers, power series, and exponentials. Holomorphic functions, derivatives, and path integrals 2. Holomorphic functions defined by

More information

CHAPTER 3 ELEMENTARY FUNCTIONS 28. THE EXPONENTIAL FUNCTION. Definition: The exponential function: The exponential function e z by writing

CHAPTER 3 ELEMENTARY FUNCTIONS 28. THE EXPONENTIAL FUNCTION. Definition: The exponential function: The exponential function e z by writing CHAPTER 3 ELEMENTARY FUNCTIONS We consider here various elementary functions studied in calculus and define corresponding functions of a complex variable. To be specific, we define analytic functions of

More information

Math Spring 2014 Solutions to Assignment # 8 Completion Date: Friday May 30, 2014

Math Spring 2014 Solutions to Assignment # 8 Completion Date: Friday May 30, 2014 Math 3 - Spring 4 Solutions to Assignment # 8 ompletion Date: Friday May 3, 4 Question. [p 49, #] By finding an antiderivative, evaluate each of these integrals, where the path is any contour between the

More information

COMPLEX ANALYSIS Spring 2014

COMPLEX ANALYSIS Spring 2014 COMPLEX ANALYSIS Spring 24 Homework 4 Solutions Exercise Do and hand in exercise, Chapter 3, p. 4. Solution. The exercise states: Show that if a

More information

Theorem [Mean Value Theorem for Harmonic Functions] Let u be harmonic on D(z 0, R). Then for any r (0, R), u(z 0 ) = 1 z z 0 r

Theorem [Mean Value Theorem for Harmonic Functions] Let u be harmonic on D(z 0, R). Then for any r (0, R), u(z 0 ) = 1 z z 0 r 2. A harmonic conjugate always exists locally: if u is a harmonic function in an open set U, then for any disk D(z 0, r) U, there is f, which is analytic in D(z 0, r) and satisfies that Re f u. Since such

More information

MTH3101 Spring 2017 HW Assignment 4: Sec. 26: #6,7; Sec. 33: #5,7; Sec. 38: #8; Sec. 40: #2 The due date for this assignment is 2/23/17.

MTH3101 Spring 2017 HW Assignment 4: Sec. 26: #6,7; Sec. 33: #5,7; Sec. 38: #8; Sec. 40: #2 The due date for this assignment is 2/23/17. MTH0 Spring 07 HW Assignment : Sec. 6: #6,7; Sec. : #5,7; Sec. 8: #8; Sec. 0: # The due date for this assignment is //7. Sec. 6: #6. Use results in Sec. to verify that the function g z = ln r + iθ r >

More information

Conformal maps. Lent 2019 COMPLEX METHODS G. Taylor. A star means optional and not necessarily harder.

Conformal maps. Lent 2019 COMPLEX METHODS G. Taylor. A star means optional and not necessarily harder. Lent 29 COMPLEX METHODS G. Taylor A star means optional and not necessarily harder. Conformal maps. (i) Let f(z) = az + b, with ad bc. Where in C is f conformal? cz + d (ii) Let f(z) = z +. What are the

More information

4 Uniform convergence

4 Uniform convergence 4 Uniform convergence In the last few sections we have seen several functions which have been defined via series or integrals. We now want to develop tools that will allow us to show that these functions

More information

Complex Series. Chapter 20

Complex Series. Chapter 20 hapter 20 omplex Series As in the real case, representation of functions by infinite series of simpler functions is an endeavor worthy of our serious consideration. We start with an examination of the

More information

Introduction to Complex Analysis. Michael Taylor

Introduction to Complex Analysis. Michael Taylor Introduction to Complex Analysis Michael Taylor 2 Contents 0. Complex numbers, power series, and exponentials. Holomorphic functions, derivatives, and path integrals 2. Holomorphic functions defined by

More information

Solutions to Exercises 1.1

Solutions to Exercises 1.1 Section 1.1 Complex Numbers 1 Solutions to Exercises 1.1 1. We have So a 0 and b 1. 5. We have So a 3 and b 4. 9. We have i 0+ 1i. i +i because i i +i 1 {}}{ 4+4i + i 3+4i. 1 + i 3 7 i 1 3 3 + i 14 1 1

More information

Complex Analysis Topic: Singularities

Complex Analysis Topic: Singularities Complex Analysis Topic: Singularities MA201 Mathematics III Department of Mathematics IIT Guwahati August 2015 Complex Analysis Topic: Singularities 1 / 15 Zeroes of Analytic Functions A point z 0 C is

More information

MATH 215A NOTES MOOR XU NOTES FROM A COURSE BY KANNAN SOUNDARARAJAN

MATH 215A NOTES MOOR XU NOTES FROM A COURSE BY KANNAN SOUNDARARAJAN MATH 25A NOTES MOOR XU NOTES FROM A COURSE BY KANNAN SOUNDARARAJAN Abstract. These notes were taken during Math 25A (Complex Analysis) taught by Kannan Soundararajan in Fall 2 at Stanford University. They

More information

Complex Analysis MATH 6300 Fall 2013 Homework 4

Complex Analysis MATH 6300 Fall 2013 Homework 4 Complex Analysis MATH 6300 Fall 2013 Homework 4 Due Wednesday, December 11 at 5 PM Note that to get full credit on any problem in this class, you must solve the problems in an efficient and elegant manner,

More information

A REVIEW OF RESIDUES AND INTEGRATION A PROCEDURAL APPROACH

A REVIEW OF RESIDUES AND INTEGRATION A PROCEDURAL APPROACH A REVIEW OF RESIDUES AND INTEGRATION A PROEDURAL APPROAH ANDREW ARHIBALD 1. Introduction When working with complex functions, it is best to understand exactly how they work. Of course, complex functions

More information

Complex Analysis Lecture notes

Complex Analysis Lecture notes Complex Analysis Lecture notes Prof. Dr. Christoph Thiele Summer term 206 Universität Bonn May 6, 206 Contents Fundamentals Fundamentals A complex number is a pair (x, y) of real numbers. The space C =

More information

z b k P k p k (z), (z a) f (n 1) (a) 2 (n 1)! (z a)n 1 +f n (z)(z a) n, where f n (z) = 1 C

z b k P k p k (z), (z a) f (n 1) (a) 2 (n 1)! (z a)n 1 +f n (z)(z a) n, where f n (z) = 1 C . Representations of Meromorphic Functions There are two natural ways to represent a rational function. One is to express it as a quotient of two polynomials, the other is to use partial fractions. The

More information

III.2. Analytic Functions

III.2. Analytic Functions III.2. Analytic Functions 1 III.2. Analytic Functions Recall. When you hear analytic function, think power series representation! Definition. If G is an open set in C and f : G C, then f is differentiable

More information

CHAPTER 4. Elementary Functions. Dr. Pulak Sahoo

CHAPTER 4. Elementary Functions. Dr. Pulak Sahoo CHAPTER 4 Elementary Functions BY Dr. Pulak Sahoo Assistant Professor Department of Mathematics University Of Kalyani West Bengal, India E-mail : sahoopulak1@gmail.com 1 Module-4: Multivalued Functions-II

More information

Faculteit Wiskunde en Informatica

Faculteit Wiskunde en Informatica Faculteit Wiskunde en Informatica Lecture notes for courses on Complex Analysis, Fourier Analysis and Asymptotic Analysis of Integrals S.W. Rienstra Originally based on the lecture notes for complex function

More information

MATH 106 HOMEWORK 4 SOLUTIONS. sin(2z) = 2 sin z cos z. (e zi + e zi ) 2. = 2 (ezi e zi )

MATH 106 HOMEWORK 4 SOLUTIONS. sin(2z) = 2 sin z cos z. (e zi + e zi ) 2. = 2 (ezi e zi ) MATH 16 HOMEWORK 4 SOLUTIONS 1 Show directly from the definition that sin(z) = ezi e zi i sin(z) = sin z cos z = (ezi e zi ) i (e zi + e zi ) = sin z cos z Write the following complex numbers in standard

More information

Fourth Week: Lectures 10-12

Fourth Week: Lectures 10-12 Fourth Week: Lectures 10-12 Lecture 10 The fact that a power series p of positive radius of convergence defines a function inside its disc of convergence via substitution is something that we cannot ignore

More information

Part IB. Complex Methods. Year

Part IB. Complex Methods. Year Part IB Year 218 217 216 215 214 213 212 211 21 29 28 27 26 25 24 23 22 21 218 Paper 1, Section I 2A Complex Analysis or 7 (a) Show that w = log(z) is a conformal mapping from the right half z-plane, Re(z)

More information

Solutions to Exercises 6.1

Solutions to Exercises 6.1 34 Chapter 6 Conformal Mappings Solutions to Exercises 6.. An analytic function fz is conformal where f z. If fz = z + e z, then f z =e z z + z. We have f z = z z += z =. Thus f is conformal at all z.

More information

Complex Variables & Integral Transforms

Complex Variables & Integral Transforms Complex Variables & Integral Transforms Notes taken by J.Pearson, from a S4 course at the U.Manchester. Lecture delivered by Dr.W.Parnell July 9, 007 Contents 1 Complex Variables 3 1.1 General Relations

More information

NPTEL web course on Complex Analysis. A. Swaminathan I.I.T. Roorkee, India. and. V.K. Katiyar I.I.T. Roorkee, India

NPTEL web course on Complex Analysis. A. Swaminathan I.I.T. Roorkee, India. and. V.K. Katiyar I.I.T. Roorkee, India NPTEL web course on Complex Analysis A. Swaminathan I.I.T. Roorkee, India and V.K. Katiyar I.I.T. Roorkee, India A.Swaminathan and V.K.Katiyar (NPTEL) Complex Analysis 1 / 17 Complex Analysis Module: 5:

More information

Problems for MATH-6300 Complex Analysis

Problems for MATH-6300 Complex Analysis Problems for MATH-63 Complex Analysis Gregor Kovačič December, 7 This list will change as the semester goes on. Please make sure you always have the newest version of it.. Prove the following Theorem For

More information

Course 214 Section 2: Infinite Series Second Semester 2008

Course 214 Section 2: Infinite Series Second Semester 2008 Course 214 Section 2: Infinite Series Second Semester 2008 David R. Wilkins Copyright c David R. Wilkins 1989 2008 Contents 2 Infinite Series 25 2.1 The Comparison Test and Ratio Test.............. 26

More information

= 2 x y 2. (1)

= 2 x y 2. (1) COMPLEX ANALYSIS PART 5: HARMONIC FUNCTIONS A Let me start by asking you a question. Suppose that f is an analytic function so that the CR-equation f/ z = 0 is satisfied. Let us write u and v for the real

More information

. Then g is holomorphic and bounded in U. So z 0 is a removable singularity of g. Since f(z) = w 0 + 1

. Then g is holomorphic and bounded in U. So z 0 is a removable singularity of g. Since f(z) = w 0 + 1 Now we describe the behavior of f near an isolated singularity of each kind. We will always assume that z 0 is a singularity of f, and f is holomorphic on D(z 0, r) \ {z 0 }. Theorem 4.2.. z 0 is a removable

More information

Physics 307. Mathematical Physics. Luis Anchordoqui. Wednesday, August 31, 16

Physics 307. Mathematical Physics. Luis Anchordoqui. Wednesday, August 31, 16 Physics 307 Mathematical Physics Luis Anchordoqui 1 Bibliography L. A. Anchordoqui and T. C. Paul, ``Mathematical Models of Physics Problems (Nova Publishers, 2013) G. F. D. Duff and D. Naylor, ``Differential

More information

ANALYSIS QUALIFYING EXAM FALL 2017: SOLUTIONS. 1 cos(nx) lim. n 2 x 2. g n (x) = 1 cos(nx) n 2 x 2. x 2.

ANALYSIS QUALIFYING EXAM FALL 2017: SOLUTIONS. 1 cos(nx) lim. n 2 x 2. g n (x) = 1 cos(nx) n 2 x 2. x 2. ANALYSIS QUALIFYING EXAM FALL 27: SOLUTIONS Problem. Determine, with justification, the it cos(nx) n 2 x 2 dx. Solution. For an integer n >, define g n : (, ) R by Also define g : (, ) R by g(x) = g n

More information

Exercises involving elementary functions

Exercises involving elementary functions 017:11:0:16:4:09 c M. K. Warby MA3614 Complex variable methods and applications 1 Exercises involving elementary functions 1. This question was in the class test in 016/7 and was worth 5 marks. a) Let

More information

MTH 3102 Complex Variables Final Exam May 1, :30pm-5:30pm, Skurla Hall, Room 106

MTH 3102 Complex Variables Final Exam May 1, :30pm-5:30pm, Skurla Hall, Room 106 Name (Last name, First name): MTH 02 omplex Variables Final Exam May, 207 :0pm-5:0pm, Skurla Hall, Room 06 Exam Instructions: You have hour & 50 minutes to complete the exam. There are a total of problems.

More information

Paul-Eugène Parent. March 12th, Department of Mathematics and Statistics University of Ottawa. MAT 3121: Complex Analysis I

Paul-Eugène Parent. March 12th, Department of Mathematics and Statistics University of Ottawa. MAT 3121: Complex Analysis I Paul-Eugène Parent Department of Mathematics and Statistics University of Ottawa March 12th, 2014 Outline 1 Holomorphic power Series Proposition Let f (z) = a n (z z o ) n be the holomorphic function defined

More information

Math 185 Homework Problems IV Solutions

Math 185 Homework Problems IV Solutions Math 185 Homework Problems IV Solutions Instructor: Andrés Caicedo July 31, 22 12 Suppose that Ω is a domain which is not simply connected Show that the polynomials are not dense in H(Ω) PROOF As mentioned

More information

Introduction to Complex Analysis. Michael Taylor

Introduction to Complex Analysis. Michael Taylor Introduction to Complex Analysis Michael Taylor 1 2 Contents 0. Complex numbers, power series, and exponentials 1. Holomorphic functions, derivatives, and path integrals 2. Holomorphic functions defined

More information

MORE NOTES FOR MATH 823, FALL 2007

MORE NOTES FOR MATH 823, FALL 2007 MORE NOTES FOR MATH 83, FALL 007 Prop 1.1 Prop 1. Lemma 1.3 1. The Siegel upper half space 1.1. The Siegel upper half space and its Bergman kernel. The Siegel upper half space is the domain { U n+1 z C

More information