You are on page 1of 2

syms z

y=solve (exp(2*z)-5)
%%
syms x
s=x^2-5*x-6;
sol=solve(s)
%%
syms y
sol=solve(cos(2*y)+3*sin(y)==2)
%%
syms a b x
t=solve(a*x^2+7*b*x+30)
%%
syms a b x
t=solve(a*x^2+7*b*x+30,b)
%%
syms p rho g h
rho=solve(rho*g*h==p,rho)
%%
syms m v t f
t=solve(f==m*v/t,t)
%%
syms m v t f
v=solve(f==m*v/t,v)
%%
syms x y t
s=10*x+12*y+18*t;
[xt yt]=solve(s,5*x-y==15*t)
%%
syms x y t
s=10*x+12*y+18*t;
[t y]=solve(s,5*x-y==15*t,y,t)
%%
syms x y t
s=10*x+12*y+18*t;
[t x]=solve(s,5*x-y==15*t,x,t)

%%
syms t h g
y=solve(-5*t*h^2+7*t+3*h*t*g-1)
%%
syms t
%%
y=solve (10*sin(120*pi*t-(pi/2))+sin(120*pi*t))
%%
syms t
f=solve((23+7*sin(pi/12))*(t-8),t)
%%
syms d1 d2 fr
d1=solve(fr==sqrt(((2*(d1/d2)+1)^2-1)/8),d1)
%%
syms d1 d2 fr
d2=solve(fr==sqrt(((2*(d1/d2)+1)^2-1)/8),d2)
%%
syms v0 vf t a
v0=solve(a==(vf-v0)/t,v0)
%%
syms v0 vf t a
v0=solve(vf==(v0+a*t),v0)
%%
syms v0 vf t a
v0=solve(vf^2==(v0^2+2*a*x),v0)
%%
syms v0 vf t a
v0=solve(x==(v0*t+(1/2)*a*t^2),v0

x=45;
f=(3*(sind(x))^3+5*(sind(x))*(cosd(x))^2)/(cscd(x))+((cosd(2*x))^3+2*(sec
d(x))+(cotd(x))*(sind(x))^2/(tand(x)))
%%
x=(5*pi/3);
2*(tan(x))-3*(cot(x))+5*(sin(4*x))-10*(sec(x))
%%
f=60.5;
l=0.4;
th=[0,10,30,45,60,90];
m=f*l*sind(th)
%%
m=14.78;
f=55.7;
l=[0.3,0.35,0.4];
th=asind(m./(f*l))
%%
th=50;
d=70;
a=1.80;
h=d*tand(th)+a

You might also like