Maple Tutorial 5:
Algebraic Equations
M.M. Yovanovich
TUTORIAL5.MWS
Algebraic equations.
> restart:
> eq1:= (1-a)*x + b = c*y;
> sol1:= solve(eq1, x);
> sol2:= solve(eq1, y);
> sol3:= solve(eq1, a);
>
assume(h>0, g>0, v>0):
1/2*m*v^2 = m*g*h;
> solve(%, v);
> v:= %[1];
> eq11:= a*x+ 2*y - 5*z;
> eq12:= x - 1/2*y + z = 2;
> eq13:= 2*x + 3*y - z = 0;
> sol:= solve({eq11,eq12,eq13},{x,y,z});;