Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

SageMath-Double-Folium

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

a 15
max 20

You might also like