You are on page 1of 13

Trabajo de Investigación Segunda Parte

octave:6> syms x
Symbolic pkg v2.9.0: Python communication link active, SymPy
v1.5.1.
octave:7> f1=sqrt(4-x^2)+3
f1 = (sym)

________
╱ 2
╲╱ 4 - x + 3

octave:8> f2=x+1
f2 = (sym) x + 1
octave:9> f3=11-x
f3 = (sym) 11 - x
octave:10> f4=0.75*x^2-12*x+51
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f4 = (sym)

2
3⋅x
──── - 12⋅x + 51
4

octave:11> f5=sqrt(13-x)*3.46
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f5 = (sym)

________
173⋅╲╱ 13 - x
──────────────
50
octave:12> f6=-sqrt(13-x)*3.46
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f6 = (sym)

________
-173⋅╲╱ 13 - x
────────────────
50

octave:13> f7=-0.75*x^2+12*x-51
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f7 = (sym)

2
3⋅x
- ──── + 12⋅x - 51
4

octave:14> f8=-2*x+6
f8 = (sym) 6 - 2⋅x
octave:15> f9=1.5*x-8
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f9 = (sym)

3⋅x
─── - 8
2

octave:16> f10=-8-1.5*x
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f10 = (sym)

3⋅x
- ─── - 8
2

octave:17> f11=2*x+6
f11 = (sym) 2⋅x + 6
octave:18> f12=-0.75*x^2-12*x-51
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f12 = (sym)

2
3⋅x
- ──── - 12⋅x - 51
4

octave:19> f13=-sqrt(x+13)*3.46
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f13 = (sym)
________
-173⋅╲╱ x + 13
────────────────
50

octave:20> f14=sqrt(x+13)*3.46
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f14 = (sym)

________
173⋅╲╱ x + 13
──────────────
50

octave:21> f15=0.75*x^2+12*x+51
warning: passing floating-point values to sym is dangerous, see
"help sym"
warning: called from
double_to_sym_heuristic at line 50 column 7
sym at line 379 column 13
mtimes at line 63 column 5

f15 = (sym)

2
3⋅x
──── + 12⋅x + 51
4

octave:22> f16=x+11
f16 = (sym) x + 11
octave:23> f17=1-x
f17 = (sym) 1 - x

octave:24> %Grafica de Funciones


octave:24> grid on
octave:25> hold on
octave:26> ezplot(f1,[-2 2]);

octave:27> ezplot(f2,[2 5]);

octave:28> ezplot(f3,[5 8]);


octave:29> ezplot(f4,[8 10]);

octave:30> ezplot(f5,[10 13]);


octave:31> ezplot(f6,[10 13]);

octave:32> ezplot(f7,[6 10]);


octave:33> ezplot(f8,[4 6]);

octave:34> ezplot(f9,[0 4]);


octave:35> ezplot(f10,[-4 0]);

octave:36> ezplot(f11,[-6 -4]);


octave:37> ezplot(f12,[-10 -6]);

octave:38> ezplot(f13,[-13 -10]);


octave:39> ezplot(f14,[-13 -10]);

octave:40> ezplot(f15,[-10 -8]);


octave:41> ezplot(f16,[-8 -5]);

octave:42> ezplot(f17,[-5 -2]);


octave:45> axis([-15 15 -11 10])

You might also like