Question

Solve using MATLAB. Use the method of cylindrical shells to find the volume generated by rotating...

Solve using MATLAB. Use the method of cylindrical shells to find the volume generated by rotating the region bounded by y=4-2x, y=0, x=0 about x=-1.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

step 1:

The method of cylindrical Shells. says that, Volume = upper bound 211. (Shell radius). (Shell height). de lower bound Here th

Matlab code for the integration part:

clear all

syms x

expr=2*pi*(x+1)*(4-2*x);

F=int(expr,[0,2])

output:

F =

(40*pi)/3

screenshot:

>> clear all >> syms x >> expr=2*pi*(x+1)*(4-2*x); >> F=int(expr, [0,2]) F = (40*pi)/3

Summary:

Here the function is stored in expr

int() is a matlab function for integration of a certain function .If we have to find the integration for a particular range then we have to pass it as parameter as I have done here.

So,the volume generated by rotating the region about x=-1 is 40*pi/3.

Add a comment
Know the answer?
Add Answer to:
Solve using MATLAB. Use the method of cylindrical shells to find the volume generated by rotating...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT