Clear Filters
Clear Filters

How do I solve the double integral determined by the surface z=4x^2-y^2 over the rectangular region created by the coordinates (0,0),(4,0),(0,3) and (4,3) in the xy-plane?

1 view (last 30 days)
How would I solve this?

Accepted Answer

Chunru
Chunru on 2 Jul 2021
You can do a numerical integration:
z = integral2(@(x, y) 4*x.^2 - y.^2, 0, 4, 0, 3)
z = 220.0000

More Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!