Solver Draw a Circle
Algebra
->
Quadratic-relations-and-conic-sections
-> Solver Draw a Circle
Log On
Algebra: Conic sections - ellipse, parabola, hyperbola
Section
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'Draw a Circle'
This Solver (Draw a Circle)
was created by by
Shin123(626)
:
View Source
,
Show
,
Put on YOUR site
About Shin123
:
Just a kid who solves math problems for fun :)
==section input Draw a circle with center at point (*[input x=2],*[input y=-3]) and radius *[input r=3]. ==section solution The equation for this circle is *[assign r2=r^2] {{{(x-($x))^2+(y-($y))^2=$r2}}} *[assign r3=$r*2] {{{drawing(700,700,-15,15,-15,15,grid(1),ellipse($x,$y,$r3,$r3))}}} ==section output r2,r3 ==section check