Integrate function ๐‘“(๐‘ข, ๐‘ฃ) = ๐‘ฃ โˆ’ โˆš๐‘ข over the triangular region cut from the first quadrant of the uv-plane by the line u + v = 1. Plot the region of interest.

๋Œ“๊ธ€ ์ˆ˜: 1

jessupj
jessupj 2021๋…„ 2์›” 9์ผ
you need to first identify whether you want to solve this numerically or symbolicallly

๋Œ“๊ธ€์„ ๋‹ฌ๋ ค๋ฉด ๋กœ๊ทธ์ธํ•˜์‹ญ์‹œ์˜ค.

 ์ฑ„ํƒ๋œ ๋‹ต๋ณ€

the cyclist
the cyclist 2021๋…„ 2์›” 9์ผ

0 ๊ฐœ ์ถ”์ฒœ

This seems like a homework problem, so here is a hint instead of an answer: Your problem is extremely close to the first example in the documentation for the integral2 function.
(Assuming, as @jessupj asks, that you are OK with a numerical solution.)

๋Œ“๊ธ€ ์ˆ˜: 2

JIANGWEN DONG
JIANGWEN DONG 2021๋…„ 2์›” 9์ผ
hi, I have already done the code, but how do I plot it out in the first quadrant?
figure(2);
f = @(u,v) v-sqrt(u);
vmax = @(u) 1-u;
q = integral2(f,0,1,0,vmax);
the cyclist
the cyclist 2021๋…„ 2์›” 9์ผ
You could use the mesh or surf functions to plot the 3-d surface.

๋Œ“๊ธ€์„ ๋‹ฌ๋ ค๋ฉด ๋กœ๊ทธ์ธํ•˜์‹ญ์‹œ์˜ค.

์ถ”๊ฐ€ ๋‹ต๋ณ€ (0๊ฐœ)

์นดํ…Œ๊ณ ๋ฆฌ

๋„์›€๋ง ์„ผํ„ฐ ๋ฐ File Exchange์—์„œ Surface and Mesh Plots์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ

ํƒœ๊ทธ

์งˆ๋ฌธ:

2021๋…„ 2์›” 9์ผ

๋Œ“๊ธ€:

2021๋…„ 2์›” 9์ผ

Community Treasure Hunt

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

Start Hunting!

Translated by