I need help with this assignment like asap. I've never been taught how to use this program and our math department expects us to learn how to use it, but it is just so complicated!!! Please help me out!
Asked
Active
Viewed 227 times
-1
-
I literally tried to put the functions in and then do the first assignment and plot the region, but I can't figure out how to do that. – Cake TV Nov 12 '15 at 19:38
-
3you should show the code you tried in the question, otherwise it looks like you put no effort into it except scanning the page, and nobody can tell where you are stuck. – george2079 Nov 12 '15 at 20:30
-
1If you need to teach yourself Mathematica, I strongly recommend David Wagner's classic book. You can download a *free* copy by going to this question. – m_goldberg Nov 12 '15 at 21:01
1 Answers
3
2 (a)
f[x_] := x + 2;
g[x_] := Sin[x];
Plot[{f[x], g[x]},
{x, 0, π/2},
Filling -> {1 -> {2}}]
Integrate[f[x] - g[x], {x, 0, π/2}]
$-1+\pi +\frac{\pi ^2}{8}$
2 (b)
Follow the above procedure.
3 (a)
p[x_] := x^2;
r[x_] := 8 - x^2;
Plot[{p[x], r[x]}, {x, 0, π/2},
Filling -> {1 -> {2}}]
a = RevolutionPlot3D[r[x], {x, 0, π/2},
PlotRange -> {{-3, 3}, {-3, 3}, {0, 10}}];
b = RevolutionPlot3D[p[x], {x, 0, π/2},
PlotRange -> {{-3, 3}, {-3, 3}, {0, 10}}];
Show[a, b]
LCarvalho
- 9,233
- 4
- 40
- 96
David G. Stork
- 41,180
- 3
- 34
- 96
-
-
1@CakeTV: As a former professor, I'm reluctant to fill in all details lest I solve your homework problem for you; you wouldn't learn all you should and it would be unfair to other students. – David G. Stork Nov 12 '15 at 22:49
-
But the problem is I seriously have no way to figure out how to use this program. We are not taught it, we are just expected to figure it out. If you can just help me by telling me the commands and such, and if I should do the same thing for the next one, then please help – Cake TV Nov 12 '15 at 23:25
-
1@CakeTV: This is not the site for students to learn Mathematica or have others answer their homework problems for them. Go to your teacher and explain that you've never learned Mathematica. – David G. Stork Nov 12 '15 at 23:28
-
Well, perhaps a good will student may learn Mathematica here ... – Dr. belisarius Nov 13 '15 at 01:38



