You are on page 1of 1

SageMath-Circle

var('a','x','y')
show("Cartesian equation: ",LatexExpr("x^2+y^2=a^2"))
@interact
def __(a = slider (1, 100, default = 9, step_size = 1),max = slider (1, 100, default = 10,
step_size = 1)):
show(implicit_plot (x^2+y^2==a^2, (x, -max, max), (y, -max, max), axes = True,
figsize=10))
2 2 2
Cartesian equation:x + y = a

a 9
max 10

You might also like