Top Banner
ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2 π}] -1.0 -0.5 0.5 1.0 -1.0 -0.5 0.5 1.0 Plot 1 - x^2 , {x, - 1, 1} -1.0 -0.5 0.5 1.0 0.2 0.4 0.6 0.8 1.0
12

Ejercicios trabajados en clases

Aug 15, 2015

Download

Engineering

Israel Garciia
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Ejercicios trabajados en clases

ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2 π}]

-1.0 -0.5 0.5 1.0

-1.0

-0.5

0.5

1.0

Plot 1 - x^2 , {x, -1, 1}

-1.0 -0.5 0.5 1.0

0.2

0.4

0.6

0.8

1.0

Page 2: Ejercicios trabajados en clases

Plot- 1 - x^2 , {x, -1, 1}

-1.0 -0.5 0.5 1.0

-1.0

-0.8

-0.6

-0.4

-0.2

Plot 1 - x^2 , - 1 - x^2 , {x, -1, 1}

-1.0 -0.5 0.5 1.0

-1.0

-0.5

0.5

1.0

2 Trabajados en clases.nb

Page 3: Ejercicios trabajados en clases

ParametricPlot3D[{x, y, 0}, {x, 0, 1}, {y, 0, 1}]

ParametricPlot3D[{Cos[u] Sin[v], Sin[u] Sin[v], Cos[v]}, {u, 0, π}, {v, 0, π}]

Trabajados en clases.nb 3

Page 4: Ejercicios trabajados en clases

ParametricPlot3Dx, y, 1 - x^2 - y^2 , {x, -1, 1}, {y, -1, 1}

4 Trabajados en clases.nb

Page 5: Ejercicios trabajados en clases

RegionPlot3D[x y > 0, {x, 0, 8}, {y, 0, 8}, {z, 0, 8}]

ParametricPlot3D[{x, y, -3}, {x, 0, 8}, {y, 0, 8}]

Trabajados en clases.nb 5

Page 6: Ejercicios trabajados en clases

RegionPlot3Dx^2 + y2 + z2 < 1, {x, 0, 1}, {y, 0, 1}, {z, 0, 1}

RegionPlot3Dx^2 + y2 + z2 > 1, {x, 0, 1}, {y, 0, 1}, {z, 0, 1}

6 Trabajados en clases.nb

Page 7: Ejercicios trabajados en clases

RegionPlot3Dx^2 + y2 + z2 > 1, x^2 + y2 + z2 < 1, {x, 0, 1}, {y, 0, 1}, {z, 0, 1}

RegionPlot3Dx^2 + y2 + z2 < 1, {x, -1, 1}, {y, 0, 1}, {z, 0, 1}

Trabajados en clases.nb 7

Page 8: Ejercicios trabajados en clases

ParametricPlot3D

x, y, 4 - x^2 - y^2 , x, y, 1 - x^2 - y^2 , {x, -4, 4}, {y, -4, 4}

8 Trabajados en clases.nb

Page 9: Ejercicios trabajados en clases

RegionPlot3D[-1 < x^3 + y^3 + z^2 < 4, {x, -4, 4}, {y, -4, 4}, {z, -4, 4}]

Trabajados en clases.nb 9

Page 10: Ejercicios trabajados en clases

In[3]:= RegionPlot3D[1 ≤ x^2 + y^2 ≤ 2, {x, -2, 2}, {y, -2, 2}, {z, 2, 4}]

Out[3]=

10 Trabajados en clases.nb

Page 11: Ejercicios trabajados en clases

In[4]:= RegionPlot3D[1 ≤ x^2 + y^2 ≥ 2, {x, -2, 2}, {y, -2, 2}, {z, 2, 4}]

Out[4]=

Trabajados en clases.nb 11

Page 12: Ejercicios trabajados en clases

In[5]:= RegionPlot3D[1 ≥ x^2 + y^2 ≤ 2, {x, -2, 2}, {y, -2, 2}, {z, 2, 4}]

Out[5]=

12 Trabajados en clases.nb