How to Integration this function?

Is there anyway we can integrate exp(z*(z+1)/(z-1)) with respect to z?

댓글 수: 3

The function has a discontinuity at . From the plots below, the integral cannot converge in the interval
syms z
f = exp(z*(z + 1)/(z - 1));
subplot(121)
fplot(f, [-7, 1])
xlabel('z')
title('f(z < 1)')
ylim([0, 1.2])
subplot(122)
fplot(f, [1, 3])
xlabel('z')
title('f(z > 1)')
ylim([0, 5000])
simran
simran 2026년 2월 13일
Yes, I'm sorry I didn't mention earlier, I'm working in unit disk only, so |z|<1.
Torsten
Torsten 2026년 2월 13일
편집: Torsten 2026년 2월 13일
If f is holomorphic in the disc |z|<=r<1, integral_{ |z|<=r } f(z) dz = pi*r^2*f(0). Then take the limit r -> 1-.

답변 (0개)

이 질문은 마감되었습니다.

제품

릴리스

R2024b

질문:

2026년 2월 13일

마감:

2026년 2월 13일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by