Vous êtes sur la page 1sur 4

APLICACIÓN DE LA INTEGRAL DE RIEMANN

(Áreas de ecuaciones cartesianas)

Ejercicios N° 1: Calcular el área limitada por las curvas:

a) 𝑦 = 𝑥 2 ; 𝑦 = 8 − 𝑥 2 ; 4𝑥 − 𝑦 + 12 = 0

Solución

Gráfica de la función:

syms x y
hold on
x=-10:0.001:10;
y1=x.^2;
plot(x,y1,'r');
y2=8-x.^2;
plot(x,y2,'g');
y3=(4*x)+12;
plot(x,y3);
grid

100

80

60

40

20
Eje "Y"

-20

-40

-60

-80

-100
-10 -8 -6 -4 -2 0 2 4 6 8 10
Eje "X"

b) 2y = 4𝑥 2 − 𝑥 3 ; 𝑥 2 = 4𝑦

Solución

Gráfica de la función:

clear;
syms x y
hold on
x=-10:0.00001:10;
y1=(1/2).*((4.*x.^2)-x.^3);
plot(x,y1,'r');
y2=(1/4).*x.^2;
plot(x,y2);
grid
Universidad nacional de Cajamarca

700

600

500

400

300
Eje "Y"

200

100

-100

-200

-300
-10 -8 -6 -4 -2 0 2 4 6 8 10
Eje "X"

c) 𝑦 = 2𝑥 2 𝑒 𝑥 ; 𝑦 = −𝑥 3 𝑒 𝑥

Solución

Gráfica de la función:

syms x y
hold on
x=-4:0.001:4;
y1=2*(x.^2).*exp(x);
plot(x,y1,'r');
y2=-(x.^3).*exp(x);
plot(x,y2);
grid on

2000

1000

0
Eje "Y"

-1000

-2000

-3000

-4000
-4 -3 -2 -1 0 1 2 3 4
Eje "X"

Análisis matemático II Página 2


Universidad nacional de Cajamarca

𝑙𝑛𝑥
d) 𝑦 = ; 𝑦 = x. ln 𝑥
4

Solución

Gráfica de la función:

>> syms x
>> x=0:0.001:3;
>> y1=log(x)/4;
>> y2=x.*log(x);
>> plot(x,y1, 'r')
>> hold on
>> plot(x,y2)
>> grid on

2
Eje "Y"

-1

-2
0 0.5 1 1.5 2 2.5 3
Eje "X"

ÁREAS DE REGIONES PLANAS PARAMÉTRICAS

Ejercicio N°01: Hallar el área de la región limitada por las curvas:

a) X=b(2𝑐𝑜𝑠∅ − 𝑐𝑜𝑠2∅) ; y= b(2𝑐𝑜𝑠∅ − 𝑐𝑜𝑠2∅) 𝑏 ∈ 𝑅+

Solución

Gráfica de la función:

syms t
t = 0:0.1:10;
>> x = 4*cos(t) - 2*cos(2*t);
>> y = 4*sin(t) - 2*sin(2*t);
>> plot(x,y)
>> grid on

Análisis matemático II Página 3


Universidad nacional de Cajamarca

Calculamos el área entre las curvas

>> x=2*b*cos(t) - b*cos(2*t);


>> y=2*b*sin(t) - b*sin(2*t);
>> Cardiode=4*int(abs(y*diff(x,t)),t,0,pi/2)
Cardiode=4*int(abs((b*sin(2*t) - 2*b*sin(t))*(2*b*sin(2*t) - 2*b*sin(t))), t, 0, pi/2)

2
Eje "Y"

-2

-4

-6
-6 -5 -4 -3 -2 -1 0 1 2 3
Eje "X"

Análisis matemático II Página 4

Vous aimerez peut-être aussi