필터 지우기
필터 지우기

how can I solve this double integral?

조회 수: 2 (최근 30일)
Bajdar Nouredine
Bajdar Nouredine 2021년 8월 13일
댓글: Bajdar Nouredine 2021년 8월 13일

채택된 답변

John D'Errico
John D'Errico 2021년 8월 13일
편집: John D'Errico 2021년 8월 13일
  1. Why does this look like homework?
  2. Why do you assume it has a finite solution?
The integral over y is trivial.
syms y phi
K = (1-y)*exp(y/sin(phi))*cos(phi)^2*sin(phi)*phi
K = 
F = int(K,y,[0,1])
F = 
fplot(F,[0,2*pi])
ylim([-1,5])
yline(0)
grid on
So the integral over phi seems to be not well defined. That part has singularities at 0 and pi. And they will not be well behaved. (The integral will be unbounded.) What does integral tell us?
integral(matlabFunction(F),0,2*pi)
Warning: Inf or NaN value encountered.
ans = Inf
So integral seems to think it is not well posed. We could spend a little time with some simple approximations to understand why not. Or, you can just accept my claim that this kernel is not finitely integrable over that domain.
And that suggests this is not homework. Just not something you can solve. Not all problems you can write down have solutions. In fact, most of the things you just randomly choose to write down will have no solution. Don't ask my why not, as I can offer no solution. ;-)
  댓글 수: 1
Bajdar Nouredine
Bajdar Nouredine 2021년 8월 13일
Dear @John D'Errico your answer was really helpful, I put max. limit as 2pi instead of pi/2, actually this is not homework , it is part of integration as i found in an article, my aim was to know how integration could be done on two functions one belongs to y and other to theta or phi.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by