Ask Your Question
1

plot function not working (x^2+y^2=1)

asked 3 years ago

ivaralink gravatar image

Im trying to plot x^2+y^2=1 like so: plot([x^2+y^2==1],(x,-5,5),(y,-5,5))

Can anyone what i am doing wrong?

I get "TypeError: float() argument must be a string or a number, not 'tuple'"

Preview: (hide)

Comments

Welcome to Ask Sage! Thank you for your question!

slelievre gravatar imageslelievre ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 3 years ago

slelievre gravatar image

updated 3 years ago

The relation x^2 + y^2 = 1 is not an expression of y as a function of x.

To plot the graph of such a relation, Sage has a dedicated method.

It is called implicit_plot.

Try this:

sage: x, y = SR.var('x, y')
sage: implicit_plot(x^2 + y^2 == 1, (x, -5, 5), (y, -5, 5))

For the various types of 2D plots available in Sage, see:

Preview: (hide)
link

Comments

Thanks :),

ivaralink gravatar imageivaralink ( 3 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 3 years ago

Seen: 185 times

Last updated: Aug 21 '21