Session 1.11 Solving Simple Equations

> eq1:=x^2=3; Define equation with one unknown

[Maple Math]

> solve(eq1,x); Solve equation for x

[Maple Math]

> eq2:=x^3=0.5; Cubic equation should have 3 solutions

[Maple Math]

> solve(eq2,x); All solutions for cubic equation

Note : I is used for sqrt(-1)

[Maple Math]

> eqs:={x+3*y=5,2*x-y=3}; Define two equations with two unknowns

as a set using { and } to enclose them.

[Maple Math]

> solve(eqs,{x,y}); Solve system of equations simultaneously

[Maple Math]

> solve(eqs); <- If variable is not specified, Maple V

will select the variable

[Maple Math]

>