How to find integral of this function.

조회 수: 7 (최근 30일)
Akshay Pratap Singh
Akshay Pratap Singh 2019년 11월 2일
답변: Akshay Pratap Singh 2019년 11월 4일
clc
clear all
syms y1
k213 =(6858012277439187/(288230376151711744*cos(30*(3/2 - (3*y1)/2)^(1/2) - 10)*((-(8899397708189757*sin(30*(3/2 - (3*y1)/2)^(1/2) + 20))/(9007199254740992*cos(30*(3/2 - (3*y1)/2)^(1/2) - 10)))^(1/2) - 1)^2) - 1)*((3*(3/2 - (3*y1)/2)^(1/2))/2 - 1/2) + 1
k=int(k213, 0.5, 1)
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 11월 2일
A closed form solution seems unlikely. Perhaps you should use vpaintegral()
Akshay Pratap Singh
Akshay Pratap Singh 2019년 11월 2일
편집: Akshay Pratap Singh 2019년 11월 2일
By incorporating vpaintegral, i am not getting solution. what i get is this:
Undefined function 'vpaintegral' for input arguments of type 'sym'.
Error in falt (line 11)
k=vpaintegral(k213, 0.5, 1)

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

채택된 답변

John D'Errico
John D'Errico 2019년 11월 2일
편집: John D'Errico 2019년 11월 2일
No, that is not going to have any closed form solution.
One suggestion in the comments was to try vpaintegral. If it does not exist for you, then you either need to upgrade your version of MATLAB, or convert this to a double precision problem instead, then use integral. But integral will fail to yield anything useful, I predict. Even if it returns a number, that number will surely be random numerical garbage.
Anyway, even vpaintegral has issues with that kernel.
vpaintegral(k213,.5,1)
Error using sym/vpaintegral (line 202)
Failed precision goal. Try using 'MaxFunctionCalls'.
So lets look at what you have.
fun = matlabFunction(k213);
fplot(fun,[.5,1])
When I finally stop laughing at the idea of using a numerical integration to integrate that, I'll just wish you good luck. Perhaps you have a friend, Don Quixote, who may have more success at the effort. He always was good at tilting at windmills.
The point is, all of those singularities are going to drive any numerical integration insane. And since a symbolic integral will surely not exist, perhaps you shoild consider if you really need to solve the problem at all. Not all problems you can pose have solutions.
If you really need to solve this, you might consider trying to identify the singularities. I see only 5 of them in the interval of interest. Isolate tham, then work on each one individually.
  댓글 수: 1
Steven Lord
Steven Lord 2019년 11월 2일
Another possibility, if you know that the integral of this function exists (if the integral has some sort of physical meaning) is to check that you've accurately implemented the function. pretty print the symbolic function and compare it to the mathematical function that you think you've implemented. Make sure you haven't divided when you should have multiplied or something similar.
pretty(vpa(k213, 6))
Or write that code in the Live Editor and display k213.

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

추가 답변 (1개)

Akshay Pratap Singh
Akshay Pratap Singh 2019년 11월 4일
Thanks @Walter Roberson, @ John D'Errico, @Steven Lord, for your contribution in the given problem. I will check my problem, where I am lacking.
Thank you all.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by