How solve a double integral analytically without using numeric methods
Show older comments
I need to solve a double integral analytically without using numeric methods, which means no quad function and the like.
The integral is from -2 to 2 (outside) and 0 to 4 (inside) of
x^2 -3y^2 +xy^3 dx dy
Answers (1)
Walter Roberson
on 14 Feb 2013
Edited: Walter Roberson
on 14 Feb 2013
If you have the symbolic toolbox
syms x y
int(int(x^2 - 3*y^2 + x*y^3, x, 0, 4), y, -2, 2)
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!