Solve a double integral: symbolically or numerically?

1 次查看(过去 30 天)
Hello, I am trying to solve this double integral symbolically as
syms i j b c d
f = (1/(d*j*sqrt(2*pi)))*exp(-0.5*((j-(b*i+c))^(2))/(d*j)^(2))
int(int(f,j,20,25),i,20,21)
with b,c,d unknown parameters. Unfortunately I did not get any solutions. Thus, is there a way to solve it or do I have to try it numerically? If so, is it possible to solve numerical integral by keeping some parameters unknown?
Thank you in advance!!

回答(1 个)

Walter Roberson
Walter Roberson 2016-6-24
It is not possible to do a numeric integration with unknown parameters.
You might be able to get one step closer by exchanging the order of integration, but it looks like there might not be any known closed form for the double integral, even if you substitute in specific numeric values. You are going to have to use numeric integration for the overall solution.

Community Treasure Hunt

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

Start Hunting!

Translated by