How solve a double integral analytically without using numeric methods

5 views (last 30 days)
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
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)

Community Treasure Hunt

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

Start Hunting!