You are on page 1of 2

1)

a)> a:= (3^(5/3)*3^(7/2))/(3^(1/6));


b)> b:=-root(36,2)+(1)/(root(81,2)-root(27,3));
>evalf(b,20);
c)>c:=(1/root(9,2))*(root(8,3)+5*root(32,5));
d)>d:=(sin(exp(10)))/(log[5](625));
> evalf(d,20);
e)> e:=(4/9*(1/2-(1/9*(9-1)+8)-3/2))/(-2/3*(3/4-(4/5+1)-18/7)+1);
> evalf(e,20);
f)> f:=(71!/69!+(7*root(25,2)-32)!)/((5*6+7/11)^2);
> evalf(f,20);
g)> g:=(root(root(root(abs(-Pi*((25+9)/(36-2))),4),3),2))/(tan(Pi/3))+1;
> evalf(g,20);

2)
a) solve(3^(x+2)-3^(x+1)+3^(x-2)+3^(x-3) = 1494);
b) solve(abs(3*x) > abs(6-3*x));
c) solve({-x+5*y+3*z = -10, x-y-z = 2, 2*x-4*y+z = 16}, {x, y, z});

3)
a-> simplify((y-z)*(x^2-w^2)/((x+w)*(y^2-z^2)))
b-> simplify((2*x^2-x-3)/(x^3+2*x^2+6*x+5)+(16*x*y^2-24*x^2*y)/(x*y));

5)
a)> f:=x->(4*x^2+8*x+88)/(x+1);
b)> solve({((4*x^2+8*x+88)/(x+1))=0},{x});
c)
> f:=(4*x^2+8*x+88)/(x+1);
> g:=1/sqrt((x^2)-2*x+1);
> solve(f=g,x);
7)
f:=x->x^2+x
g:=x->2x-1
h:=x->3x
expand(h(f(h(g(x))))(-4));

12)
a)
x := proc (t) options operator, arrow; (1000-1000*exp((-1)*.1258*t))/(25-4*exp((-1)*.1258*t)) end proc
b)
x(1); x(2); x(3)
plot(x(t), t = 0 .. 50, color = blue)

c)
a+2
X := {10, 20, 30, 40, 50}
seq((1000*(1-exp(.1258*t)))/(25-exp(-.1258*t)), `in`(t, X))

You might also like