0% found this document useful (0 votes)
14 views17 pages

Deber2 Simulacion EscobarTituaña

Uploaded by

Kenay Tituaña
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views17 pages

Deber2 Simulacion EscobarTituaña

Uploaded by

Kenay Tituaña
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

syms x y(x)

% Ejercicio 1(162)
ode1 = diff(y, x) == sin(x)^2;
sol1 = dsolve(ode1)

sol1 =

syms x y(x)
% Ejercicio 2(163)
ode2 = diff(y, x) == cos(x)^2;
sol2 = dsolve(ode2)

sol2 =

syms x y(x)
% Ejercicio 3(164)
ode3 = diff(y, x) == tan(x)^2;
sol3 = dsolve(ode3)

sol3 =

syms x y(x)
% Ejercicio 4(165)
ode4 = diff(y, x) == sin(x)^2 * cos(x);
sol4 = dsolve(ode4)

sol4 =

syms x y(x)
% Ejercicio 5(167)
ode5 = diff(y, x) == cos(x)^3;
sol5 = dsolve(ode5)

sol5 =

syms x y(x)
% Ejercicio 6(168)
ode6 = diff(y, x) == sin(x)^4;

1
sol6 = dsolve(ode6)

sol6 =

syms x y(x)
% Ejercicio 7(169)
ode7 = diff(y, x) == tan(x)^4;
sol7 = dsolve(ode7)

sol7 =

syms x y(x)
% Ejercicio 8(170)
ode8 = diff(y, x) == sin(3*x)^2;
sol8 = dsolve(ode8)

sol8 =

syms x y(x)
% Ejercicio 9(172)
ode9 = diff(y, x) == sin(4*x)^3;
sol9 = dsolve(ode9)

sol9 =

syms x y(x)
% Ejercicio 10(177)
ode10 = diff(y, x) == sin(x)^5;
sol10 = dsolve(ode10)

sol10 =

2
syms y(x)
ode = diff(y,x) == sec(x)^3;
ySol11 = dsolve(ode)

ySol11 =

syms y(x)
ode = diff(y,x) == log(x)/x^3;
ySol12 = dsolve(ode)

ySol12 =

syms y(x)
ode = diff(y,x) == x * cos(3*x);
ySol13 = dsolve(ode)

ySol13 =

syms y(x)
ode = diff(y,x) == x * sin(2*x);
ySol14 = dsolve(ode)

ySol14 =

syms y(x)
ode = diff(y,x) == x * sin(x)^2;
ySol15 = dsolve(ode)

ySol15 =

syms y(x)
ode = diff(y,x) == exp(2*x) * cos(x);
ySol16 = dsolve(ode)

ySol16 =

1
syms y(x)
ode = diff(y,x) == x^2 * sin(2*x);
ySol17 = dsolve(ode)

ySol17 =

syms y(x)
ode = diff(y,x) == x^2 * exp(3*x);
ySol18 = dsolve(ode)

ySol18 =

syms y(x)
ode = diff(y,x) == x * sec(x) * tan(x);
ySol19 = dsolve(ode)

ySol19 =

syms y(x)
ode = diff(y,x) == x * sin(x) * cos(x);
ySol20 = dsolve(ode)

ySol20 =

syms y(x)
ode = diff(y,x) == x^3 * cos(x);
ySol21 = dsolve(ode)

ySol21 =

syms y(x)
ode = diff(y,x) == exp(x) * cos(x)^2;
ySol22 = dsolve(ode)

ySol22 =

2
syms y(x)
ode = diff(y,x) == log(x)/x^3;
ySol12 = dsolve(ode)

ySol12 =

syms y(x)
ode = diff(y,x) == x * exp(-x);
ySol23 = dsolve(ode)

ySol23 =

syms y(x)
ode = diff(y,x) == x * log(x);
ySol24 = dsolve(ode)

ySol24 =

syms y(x)
ode = diff(y,x) == x^3 * exp(x);
ySol25 = dsolve(ode)

ySol25 =

syms y(x)
ode = diff(y,x) == x^2 * log(x);
ySol26 = dsolve(ode)

ySol26 =

syms y(x)
ode = diff(y,x) == x * exp(2*x);
ySol27 = dsolve(ode)

3
ySol27 =

syms y(x)
ode = diff(y,x) == x * log(x + 1);
ySol28 = dsolve(ode)

ySol28 =

syms y(x)
ode = diff(y,x) == x * sec(x)^2;
ySol29 = dsolve(ode)

ySol29 =

syms y(x)
ode = diff(y,x) == x * atan(x);
ySol30 = dsolve(ode)

ySol30 =

syms y(x)
ode = diff(y,x) == x * cos(3*x);
ySol31 = dsolve(ode)

ySol31 =

syms y(x)
ode = diff(y,x) == x*sin(2*x);
ySol32 = dsolve(ode)

ySol32 =

syms y(x)
ode = diff(y,x) == x * sin(x)^2;
ySol33 = dsolve(ode)

4
ySol33 =

syms y(x)
ode = diff(y,x) == 4*x^3 - 2*x^2 + 7*x + 45;
ySol34 = dsolve(ode)

ySol34 =

syms y(x)
ode = diff(y,x) == sin(x) + x^4 + exp(x);
ySol35 = dsolve(ode)

ySol35 =

syms y(x)
ode = diff(y,x) == x * sec(x);
ySol36 = dsolve(ode)

ySol36 =

syms y(x)
ode = diff(y,x) == 18 / (x^2 + 4*x - 5);
ySol37 = dsolve(ode)

ySol37 =

syms y(x)
ode = diff(y,x) == exp(x) * sin(4*exp(x) + 2);
ySol38 = dsolve(ode)

ySol38 =

syms y(x)
ode = diff(y,x) == (x^3 + x + 5)/(x^2 + 1);
ySol39 = dsolve(ode)

ySol39 =

5
syms y(x)
ode = diff(y,x) == cos(sin(x) + 2*x) * (cos(x) + 2);
ySol40 = dsolve(ode)

ySol40 =

syms y(x)
ode = diff(y,x) == cos(x)^3 / (1 - sin(x));
ySol41 = dsolve(ode)

ySol41 =

syms y(x) a b
ode = diff(y,x) == sec(x)^2 / (a + b * tan(x));
ySol42 = dsolve(ode)

ySol42 =

syms y(x)
ode = diff(y,x) == sin(4*x)^5 * cos(4*x);
ySol43 = dsolve(ode)

ySol43 =

syms y(x)
ode = diff(y,x) == sin(2*x) / (cos(x)^2 + 4);
ySol44 = dsolve(ode)

ySol44 =

syms y(x)
ode = diff(y,x) == exp(x) * sin(4*exp(x) + 2);
ySol45 = dsolve(ode)

ySol45 =

6
syms y(x)
ode = diff(y,x) == (x^3 + x + 5) / (x^2 + 1);
ySol46 = dsolve(ode)

ySol46 =

syms y(x)
ode = diff(y,x) == (log(x) + 1)*exp(x)*log(x);
ySol47 = dsolve(ode)

ySol47 =

syms y(x)
ode = diff(y,x) == cot(log(x))/x;
ySol48 = dsolve(ode)

ySol48 =

syms y(x) a b
ode = diff(y,x) == x^2 / (a + b * x^3)^2;
ySo49 = dsolve(ode)

ySo49 =

syms y(x)
ode = (1 + x) * diff(y, x) - y == 0;
ySol50 = dsolve(ode)

ySol50 =

7
% 1
A = [1 6 27; 7 -3 9]

A = 2×3
1 6 27
7 -3 9

disp('1:'); rref(A)

1:
ans = 2×3
1 0 3
0 1 4

% 2
A = [3 -2 -2; 5 8 -60];
disp('2:'); rref(A)

2:
ans = 2×3
1 0 -4
0 1 -5

% 3
A = [3 5 7; 2 -1 -4];
disp('3:'); rref(A)

3:
ans = 2×3
1 0 -1
0 1 2

% 4
A = [7 -4 5; 9 8 13];
disp('4:'); rref(A)

4:
ans = 2×3
1.0000 0 1.0000
0 1.0000 0.5000

% 5
A = [9 16 7; 4 -3 0];
disp('5:'); rref(A)

5:
ans = 2×3
1.0000 0 0.2308
0 1.0000 0.3077

% 6
A = [14 -11 -29; 13 -8 30];

1
disp('6:'); rref(A)

6:
ans = 2×3
1.0000 0 18.1290
0 1.0000 25.7097

% 7
A = [15 -11 -87; -12 -5 -27];
disp('7:'); rref(A)

7:
ans = 2×3
1.0000 0 -0.6667
0 1.0000 7.0000

% 8
A = [7 9 42; 12 10 -4];
disp('8:'); rref(A)

8:
ans = 2×3
1 0 -12
0 1 14

% 9
A = [6 -18 -85; 24 -5 -5];
disp('9:'); rref(A)

9:
ans = 2×3
1.0000 0 0.8333
0 1.0000 5.0000

% 10
A = [1 3 6; 5 -2 13];
disp('10:'); rref(A)

10:
ans = 2×3
1 0 3
0 1 1

% 11
A = [5 7 -1; -3 4 -24];
disp('11:'); rref(A)

11:
ans = 2×3
1 0 4
0 1 -3

2
% 12
A = [4 3 8; 8 -9 -77];
disp('12:'); rref(A)

12:
ans = 2×3
1.0000 0 -2.6500
0 1.0000 6.2000

% 13
A = [1 -5 8; -7 8 25];
disp('13:'); rref(A)

13:
ans = 2×3
1 0 -7
0 1 -3

% 14
A = [15 11 32; 7 -3 8];
disp('14:'); rref(A)

14:
ans = 2×3
1.0000 0 1.5082
0 1.0000 0.8525

% 15
A = [10 18 -11; 16 -9 -5];
disp('15:'); rref(A)

15:
ans = 2×3
1.0000 0 -0.5000
0 1.0000 -0.3333

% 16
A = [4 5 5; -10 -4 -7];
disp('16:'); rref(A)

16:
ans = 2×3
1.0000 0 0.4412
0 1.0000 0.6471

% 17
A = [32 -25 13; 16 15 1];
disp('17:'); rref(A)

17:
ans = 2×3
1.0000 0 0.2500

3
0 1.0000 -0.2000

% 18
A = [-13 11 -163; -8 7 94];
disp('18:'); rref(A)

18:
ans = 2×3
1 0 725
0 1 842

% 19
A = [6 -5 -9; 4 3 18];
disp('19:'); rref(A)

19:
ans = 2×3
1.0000 0 1.6579
0 1.0000 3.7895

% 20
A = [7 -15 1; -1 -6 8];
disp('20:'); rref(A)

20:
ans = 2×3
1 0 -2
0 1 -1

% 21
A = [3 -4 41; 11 6 47];
disp('21:'); rref(A)

21:
ans = 2×3
1 0 7
0 1 -5

% 22
A = [9 11 -14; 6 -5 -35];
disp('22:'); rref(A)

22:
ans = 2×3
1.0000 0 -4.0991
0 1.0000 2.0811

% 23
A = [10 -3 36; 2 5 -4];
disp('23:'); rref(A)

4
23:
ans = 2×3
1 0 3
0 1 -2

% 24
A = [11 -9 2; 13 -15 -2];
disp('24:'); rref(A)

24:
ans = 2×3
1 0 1
0 1 1

% 25
A = [18 5 -11; 12 11 31];
disp('25:'); rref(A)

25:
ans = 2×3
1 0 -2
0 1 5

% 26
A = [9 7 -4; 11 -13 -48];
disp('26:'); rref(A)

26:
ans = 2×3
1 0 -2
0 1 2

% 27
A = [12 -14 20; 12 -14 -19];
disp('27:'); rref(A)

27:
ans = 2×3
1.0000 -1.1667 0
0 0 1.0000

% 28
A = [15 -1 40; 19 8 236];
disp('28:'); rref(A)

28:
ans = 2×3
1 0 4
0 1 20

% 29

5
A = [36 -11 -14; 24 -17 10];
disp('29:'); rref(A)

29:
ans = 2×3
1 0 -1
0 1 -2

% 30
A = [12 -17 104; 15 19 -31];
disp('30:'); rref(A)

30:
ans = 2×3
1 0 3
0 1 -4

6
Course Completion Certificate

Said Escobar

has successfully completed 100% of the self-paced training course

MATLAB Onramp

21 April 2025
Course Completion Certificate

Kenay Mateo

has successfully completed 100% of the self-paced training course

MATLAB Onramp

18 April 2025

You might also like