Taller 5 Lars

Download as pdf or txt
Download as pdf or txt
You are on page 1of 19

LAURA ALEJANDRA ROMERO SEPULVEDA

TALLER 5
CALCULO MULTIVARIADO
2020-2

1.
In[ ]:= f1[x_, y_] := 4 x + 2

Printed by Wolfram Mathematica Student Edition


2 TALLER 5.nb

In[ ]:= a1 = RegionPlot0 ≤ x ≤ 2 && x2 ≤ y ≤ 2 x, {x, 0, 2}, {y, 0, 10}, PlotPoints → 90
10

Out[]=

0
0.0 0.5 1.0 1.5 2.0

In[ ]:= b1 = ContourPlotx ⩵ 0, x ⩵ 2, y ⩵ x2 , y ⩵ 2 x, {x, 0, 2}, {y, 0, 10}


10

Out[]=

0
0.0 0.5 1.0 1.5 2.0

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 3

In[ ]:= Show[a1, b1]


10

Out[]=

0
0.0 0.5 1.0 1.5 2.0

2 2x
In[ ]:=   f1[x, y] ⅆ y ⅆ x
0 x2

Out[]= 8

y
2
2
In[ ]:=   f1[x, y] ⅆ x ⅆ y
0 y

2
Out[]= - 1 + 4 2
3

2.
x ⅇ2 y
In[ ]:= f2[x_, y_] :=
4-y

Printed by Wolfram Mathematica Student Edition


4 TALLER 5.nb

In[ ]:= a2 = RegionPlot0 ≤ x ≤ 2 && 0 ≤ y ≤ 4 - x2 , {x, 0, 10}, {y, 0, 5}, PlotPoints → 90
5

Out[]=

0
0 2 4 6 8 10

In[ ]:= b2 = ContourPlotx ⩵ 0, x ⩵ 2, y ⩵ 4 - x2 , y ⩵ 0, {x, 0, 10}, {y, 0, 5}


5

Out[]=

0
0 2 4 6 8 10

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 5

In[ ]:= Show[a2, b2]


5

Out[]=

0
0 2 4 6 8 10

2 4-x2
In[ ]:=   f2[x, y] ⅆ y ⅆ x
0 0
1
Out[]= - 1 + ⅇ8 
4

2 4-y
In[ ]:=   f2[x, y] ⅆ x ⅆ y
0 0
1
Out[]= - 1 + ⅇ4 
4

3.
In[ ]:= R3a = RegionPlot[Abs[x] + Abs[y] ≤ 1 && x < 0, {x, - 1, 1},
{y, - 1, 1}, PlotPoints → 60, Axes → True, Frame → False, ImageSize → Small,
PlotLabels → Placed["R3a", Center], PlotStyle → LightGray]
1.0

0.5

Out[]= R3a
-1.0 -0.5 0.5 1.0

-0.5

-1.0

Printed by Wolfram Mathematica Student Edition


6 TALLER 5.nb

In[ ]:= R3b = RegionPlot[Abs[x] + Abs[y] ≤ 1 && x > 0, {x, - 1, 1},


{y, - 1, 1}, PlotPoints → 60, Axes → True, Frame → False, ImageSize → Small,
PlotLabels → Placed["R3b", Center], PlotStyle → LightRed]
1.0

0.5

Out[]= R3b
-1.0 -0.5 0.5 1.0

-0.5

-1.0

In[ ]:= Show[R3a, R3b]


1.0

0.5

Out[]= R3a R3b


-1.0 -0.5 0.5 1.0

-0.5

-1.0

In[ ]:= a3 = ContourPlot{x + y ⩵ 1, x - y ⩵ 1, - x + y ⩵ 1, - x - y ⩵ 1}, {x, - 1, 1}, {y, - 1, 1},


Axes → True, Frame → False, PlotLegends → y ⩵ 0, y ⩵ 4, x ⩵ y , x ⩵ 2, ImageSize → Small
1.0

0.5
y0
y4
Out[]=
-1.0 -0.5 0.5 1.0
x y
x2
-0.5

-1.0

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 7

In[ ]:= Show[R3a, R3b, a3]


1.0

0.5
y0
y4
Out[]= R3a R3b
-1.0 -0.5 0.5 1.0
x y
x2
-0.5

-1.0

0 y-1 1 1-y
In[ ]:=   y - 2 x ^ 2 ⅆ y ⅆ x +   y - 2 x ^ 2 ⅆ y ⅆ x
-1 -y-1 0 y+1

4.
In[ ]:= f4[x_, y_] := x y

In[ ]:= a4 = RegionPlot[ x ≤ y ≤ 2 - x, {x, 0, 2}, {y, 0, 5}, PlotPoints → 90]


5

Out[]=

0
0.0 0.5 1.0 1.5 2.0

Printed by Wolfram Mathematica Student Edition


8 TALLER 5.nb

In[ ]:= b4 = ContourPlot[{y ⩵ x, y ⩵ 2 - x}, {x, 0, 2}, {y, 0, 5}]


5

Out[]=

0
0.0 0.5 1.0 1.5 2.0

In[ ]:= Show[a4, b4]


5

Out[]=

0
0.0 0.5 1.0 1.5 2.0

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 9

2-x
In[ ]:=  f4[x, y] ⅆ y ⅆ x
x

x2 x3
Out[]= -2 - +
2 3

2-y
In[ ]:=  f4[x, y] ⅆ x ⅆ y
0

2 y3 y4
Out[]= y2 - +
3 8

5.

In[ ]:= f5[x_, y_] := x2 1 + y4

In[ ]:= a5 = RegionPlot[0 ≤ x ≤ 2 && x ≤ y ≤ 1, {x, 0, 2}, {y, 0, 2}, PlotPoints → 90]
2.0

1.5

1.0
Out[]=

0.5

0.0
0.0 0.5 1.0 1.5 2.0

Printed by Wolfram Mathematica Student Edition


10 TALLER 5.nb

In[ ]:= b5 = ContourPlot[{x ⩵ 0, x ⩵ 2, y ⩵ x, y ⩵ 1}, {x, 0, 2}, {y, 0, 2}]


2.0

1.5

1.0
Out[]=

0.5

0.0
0.0 0.5 1.0 1.5 2.0

In[ ]:= Show[a5, b5]


2.0

1.5

1.0
Out[]=

0.5

0.0
0.0 0.5 1.0 1.5 2.0

1 1
In[ ]:=   f5[x, y] ⅆ y ⅆ x
0 x
1
Out[]= - 1 + 2 2
18

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 11

1 y
In[ ]:=   f5[x, y] ⅆ x ⅆ y
0 0
1
Out[]= - 1 + 2 2
18

6.

In[ ]:= f6[x_, y_] := Cos x3 

In[ ]:= a6 = RegionPlot0 ≤ y ≤ 2 && y2 ≤ x ≤ 4, {x, 0, 5}, {y, 0, 5}, PlotPoints → 90
5

Out[]=

0
0 1 2 3 4 5

Printed by Wolfram Mathematica Student Edition


12 TALLER 5.nb

In[ ]:= b6 = ContourPloty ⩵ 0, y ⩵ 2, x ⩵ y2 , x ⩵ 4, {x, 0, 5}, {y, 0, 5}


5

Out[]=

0
0 1 2 3 4 5

In[ ]:= Show[a6, b6]


5

Out[]=

0
0 1 2 3 4 5

2 4
In[ ]:=   2 f6[x, y] ⅆ x ⅆ y // Expand
0 y

2 Sin[8]
Out[]=
3

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 13

2 0
In[ ]:=   f6[x, y] ⅆ y ⅆ x // Expand
0 x

2
Out[]= - Sin2 2
3

y ≤ x ≤ 2, 0 ≤ y ≤ 4
4 2
In[ ]:= f10[x_, y_] :=   x^3 + 1 ⅆx ⅆy
0 y

In[ ]:= R10 = RegionPlot0 ≤ y ≤ 4 && y ≤ x ≤ 2, {x, - 1, 4}, {y, - 1, 5}, PlotPoints → 60, Axes → True,
Frame → False, ImageSize → Small, PlotLabels → Placed["R10", Center], PlotStyle → Blue
5

Out[]= 2

R10
1

-1 1 2 3 4

-1

In[ ]:= a10 = ContourPloty ⩵ 0, y ⩵ 4, x ⩵ y , x ⩵ 2, {x, - 1, 4}, {y, - 1, 5}, Axes → True,
Frame → False, PlotLegends → y ⩵ 0, y ⩵ 4, x ⩵ y , x ⩵ 2, ImageSize → Small
5

y0
3
y4
Out[]= 2
x y
1
x2

-1 1 2 3 4

-1

Printed by Wolfram Mathematica Student Edition


14 TALLER 5.nb

In[ ]:= Show[R10, a10]


5

y0
3
y4
Out[]= 2
x y
R10
1
x2

-1 1 2 3 4

-1

4 2 2 x^2
In[ ]:=   x^3 + 1 ⅆx ⅆy =   x^3 + 1 ⅆy ⅆx
0 y 0 0

11.
1 d b
In[ ]:= fprom11[x_, y_] :=   xy ⅆ x ⅆ y
b - a * d - c c a

12.
In[ ]:= f12[x_, y_] := 9 - x ^ 2 - 3 y ^ 2

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 15

In[ ]:= ContourPlot3D[9 - x ^ 2 - 3 y ^ 2 ⩵ z, {x, - 10, 10}, {y, - 10, 10}, {z, - 10, 10}, PlotPoints → 60]

Out[]=

1 3 9-3 y^2
fprom12 =   9 - x ^ 2 - 3 y ^ 2 ⅆ x ⅆ y
3* 3 *π - 3 - 9-3 y^2

In[ ]:= R12a = RegionPlot[x ^ 2 + 3 y ^ 2 ≤ 9 && x < 0, {x, - 10, 10},


{y, - 10, 10}, PlotPoints → 60, Axes → True, Frame → False,
ImageSize → Small, PlotLabels → Placed["R12a", Center], PlotStyle → Red]
10

Out[]= R12a
-10 -5 5 10

-5

-10

Printed by Wolfram Mathematica Student Edition


16 TALLER 5.nb

In[ ]:= R12b = RegionPlot[x ^ 2 + 3 y ^ 2 ≤ 9 && x > 0, {x, - 10, 10},


{y, - 10, 10}, PlotPoints → 60, Axes → True, Frame → False,
ImageSize → Small, PlotLabels → Placed["R12b", Center], PlotStyle → Blue]
10

Out[]= R12b
-10 -5 5 10

-5

-10

In[ ]:= Show[R12a, R12b]


10

Out[]= R12aR12b
-10 -5 5 10

-5

-10

In[ ]:= a12 = ContourPlotx ⩵ 9 - 3 y ^ 2 , x ⩵ - 9 - 3 y ^ 2 , y ⩵ 3 , y == - 3 ,


{x, - 10, 10}, {y, - 10, 10}, Axes → True, Frame → False,
PlotLegends → x ⩵ 9 - 3 y ^ 2 , x ⩵ - 9 - 3 y ^ 2 , y ⩵ 3 , y == - 3 , ImageSize → Small
10

5
x 9 - 3 y2
x  - 9 - 3 y2
Out[]=
-10 -5 5 10
y 3

-5 y- 3

-10

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 17

In[ ]:= Show[R12a, R12b, a12]


10

5
x 9 - 3 y2
x  - 9 - 3 y2
Out[]= R12aR12b
-10 -5 5 10
y 3

-5 y- 3

-10

Analizar los límites de integración de 0<=x<=y,0<=y<=1 (R|13a)

Analizar los límites de integración de 0<=x<=2,1<=y<=2 (R|13b)

In[ ]:= R13a = RegionPlot[0 ≤ x ≤ y && 0 ≤ y ≤ 1, {x, - 1, 2}, {y, - 1, 2}, Axes → True, Frame → False,
PlotLabels → Placed["R13a", Center], PlotStyle → Blue, ImageSize → Small]
2.0

1.5

1.0

R13a
Out[]= 0.5

-1.0 -0.5 0.5 1.0 1.5 2.0

-0.5

-1.0

Printed by Wolfram Mathematica Student Edition


18 TALLER 5.nb

In[ ]:= R13b = RegionPlot[0 ≤ x ≤ 2 - y && 1 ≤ y ≤ 2, {x, - 1, 2}, {y, - 1, 2},


Axes → True, Frame → False, PlotLabels → Placed["R13b", Center],
PlotStyle → Red, PlotPoints → 60, ImageSize → Small]
2.0

1.5
R13b

1.0

Out[]= 0.5

-1.0 -0.5 0.5 1.0 1.5 2.0

-0.5

-1.0

In[ ]:= Show[R13a, R13b]


2.0

1.5
R13b

1.0

R13a
Out[]= 0.5

-1.0 -0.5 0.5 1.0 1.5 2.0

-0.5

-1.0

In[ ]:= a13 = ContourPlot[{x == 0, x == y, y == 0, y == 1, x ⩵ 2 - y, y ⩵ 2}, {x, - 1, 2}, {y, - 1, 3},


Axes → True, Frame → False, PlotLegends → {x == 0, x == y, y == 0, y == 1, x ⩵ 2 - y, y ⩵ 2}]
3

x0
xy
y0
Out[]= 1
y1
x2-y
y2

-1.0 -0.5 0.5 1.0 1.5 2.0

-1

Printed by Wolfram Mathematica Student Edition


TALLER 5.nb 19

In[ ]:= Show[R13a, R13b, a13]


2.0

1.5 x0
R13b

1.0
xy
R13a y0
Out[]= 0.5
y1
-1.0 -0.5 0.5 1.0 1.5 2.0 x2-y
-0.5 y2

-1.0

1 y 2 2-y 1 2-x
In[ ]:=   x ^ 2 + y ^ 2 ⅆ x ⅆ y +   x ^ 2 + y ^ 2 ⅆ x ⅆ y =   x ^ 2 + y ^ 2 ⅆ y ⅆ x
0 0 1 0 0 x

Printed by Wolfram Mathematica Student Edition

You might also like