I have a code on integration closed form.I have got the answer in terms of hypergeometric function. please explain about the solution what it actually means in simple way.A short description about the solution..Please help me.Its very much needful
Show older comments
syms a x y clear
f = y/(y + x^(a/2));
F = int(f, x, 1, inf);
vpa(F, 5)
int(f, x, 'IgnoreSpecialCases', true)
Solution is:
ans =
numeric::int(y/(y + x^(a/2)), x == 1..Inf)
ans =
x*hypergeom([1, 2/a], [2/a + 1], -x^(a/2)/y)
Answers (1)
Walter Roberson
on 4 Feb 2016
0 votes
It does not mean much, as you did not put in the integration limit when you told it to ignore special cases.
4 Comments
Swapna Havalgi
on 5 Feb 2016
Walter Roberson
on 5 Feb 2016
My tests with a different package suggests that there is no closed form integral for that. However if you have restrictions on the range of y or a then possibly there is a special case.
Swapna Havalgi
on 5 Feb 2016
Torsten
on 8 Feb 2016
If it helps:
For a being an even integer >= 4, explicit solutions should exist.
Best wishes
Torsten.
Categories
Find more on Operating on Diagonal Matrices in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!