Está en la página 1de 3

-->

Ejercicio 6

(%i1)

solve(2*x^5+11*x^4+2*x^3-51*x^2-14*x+60);

3
(%o1) [x = 5 1, x = 5 1, x = , x = 6 1, x = 6 1]
2
-->

Ejercicio 7

(%i2)

linsolve([2*x+y=1, 3*x-7*y=4], [x,y]);

(%o2) [x =

11
5
,y = ]
17
17

-->

Ejercicio 12

(%i3)

linsolve([2*x+m*y=0, x+m*z=m, x-y+3*z=1], [x,y,z]);

(%o3) [x =

2m
4
m+1
,y =
,z =
]
m1
m1
m1

-->

Discusi
on del sistema

-->

Si m = 1, el sistema es incompatible
Si m =/1, el sistema es compatible y la soluci
on est
a dada en %o3

(%i4)

subst(2, m, %o3);

(%o4) [x = 4, y = 4, z = 3]
-->

Ejercicio 4

(%i5)

(2*x+5)/(x^2+2);

(%o5)

2x + 5
x2 + 2

(%i7)

diff(%o5,x,1);

(%o7)

2
2 x (2 x + 5)

2
x2 + 2
(x2 + 2)

(%i8)

subst(-1,x,%o7);

(%o8)

4
3

(%i10) subst(-1,x,%o5);
(%o10) 1
1

(%i11) 1-4/3*-1;
(%o11)

7
3

(%i12) wxplot2d([(2*x+5)/(x^2+2),4/3*x+7/3], [x,-3,3], [y,-4,6]);


plot2d : somevalueswereclipped.

(%t12)
(%o12)
-->

Ejercicio 9

(%i13) f(x):=(6*x-x^2); g(x):=(x^2-2*x);


(%o13) f (x) := 6 x x2
(%o14) g (x) := x2 2 x
(%i15) solve(f(x)=g(x),x);
(%o15) [x = 0, x = 4]
(%i16) integrate(f(x)-g(x),x,0,4);
(%o16)

64
3

-->

Ejercicio 15

(%i17) h(x):=(1+x)/(sqrt(1-x));
1+x
(%o17) h (x) :=
1x

(%i18) taylor(h(x), x, 0, 5);


(%o18)/T/
1+

3 x 7 x2
11 x3
75 x4
133 x5
+
+
+
+
+ ...
2
8
16
128
256

(%i19) taylor(h(x), x, 0, 10);


3 x 7 x2 11 x3 75 x4 133 x5 483 x6 891 x7 13299 x8
+
+
+
+
+
+
+
+
2
8
16
128
256
1024
2048
32768
10
9
94809 x
25025 x
+
+ ...
65536
262144

(%o19)/T/
1+

(%i20) taylor(h(x), x, 0, 15);


3 x 7 x2 11 x3 75 x4 133 x5 483 x6 891 x7 13299 x8
+
+
+
+
+
+
+
+
2
8
16
128
256
1024
2048
32768
10
11
12
13
14
9
94809 x
180557 x
1381471 x
2652153 x
10214875 x
25025 x
+
+
+
+
+
+
65536
262144
524288
4194304
8388608
33554432
15
19723995 x
+ ...
67108864

(%o20)/T/
1+

También podría gustarte