Maple Tutorial 5:
Algebraic Equations

M.M. Yovanovich

TUTORIAL5.MWS

Algebraic equations.

> restart:

> eq1:= (1-a)*x + b = c*y;

[Maple Math]

> sol1:= solve(eq1, x);

[Maple Math]

> sol2:= solve(eq1, y);

[Maple Math]

> sol3:= solve(eq1, a);

[Maple Math]

> assume(h>0, g>0, v>0):
1/2*m*v^2 = m*g*h;

[Maple Math]

> solve(%, v);

[Maple Math]

> v:= %[1];

[Maple Math]

> eq11:= a*x+ 2*y - 5*z;

[Maple Math]

> eq12:= x - 1/2*y + z = 2;

[Maple Math]

> eq13:= 2*x + 3*y - z = 0;

[Maple Math]

> sol:= solve({eq11,eq12,eq13},{x,y,z});;

[Maple Math]