1. As a pair of functions

To plot the circle as a pair of functions, we need to solve for [Maple Math] . We can do this easily in our heads, (at least I hope you can) or ask maple:

> circfuncs:= {solve(circleEqn,y)};

[Maple Math]

Since we need a specific choice for the center and radius for this to work, let's substitute in [Maple Math] :

> mycircfuncs:= subs(a=2,b=1,R=3,circfuncs);

[Maple Math]

> plot(mycircfuncs,x=-1..5,scaling=constrained);