Ask Your Question

ivaralink's profile - activity

2024-02-28 22:41:52 +0200 received badge  Famous Question (source)
2024-02-28 22:41:52 +0200 received badge  Notable Question (source)
2024-02-28 22:41:52 +0200 received badge  Popular Question (source)
2021-08-23 13:39:27 +0200 commented question How do I plot multiple functions in one graph?

Bi, i mean that according to the documentation plot takes a collection of objects and implicit_plot only takes a functio

2021-08-22 13:59:12 +0200 commented question How do I plot multiple functions in one graph?

Strange as it may seem , i checked the documentation and the parameters correspond to the documentation. Strange but cor

2021-08-22 13:58:53 +0200 commented question How do I plot multiple functions in one graph?

Strange as it may seem , i checked the documentation and the parameters correspond to the documentation. Strange bit cor

2021-08-22 13:58:24 +0200 commented question How do I plot multiple functions in one graph?

Strange as it me Deen, i checked the documentation and the parameters correspond to the documentation. Strange bit corre

2021-08-22 13:53:30 +0200 marked best answer plot function not working (x^2+y^2=1)

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'"

2021-08-22 13:53:12 +0200 marked best answer How do I plot multiple functions in one graph?

What I do:

x, y = SR.var('x, y')
eq1 = 2*x + y == 8
eq2 = 5*x -7*y == 1
implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))

What I get:

TypeError: 'tuple' object is not callable

What am I doing wrong?

2021-08-22 13:53:12 +0200 received badge  Scholar (source)
2021-08-21 19:25:21 +0200 commented question How do I plot multiple functions in one graph?

The best i can find is: show(implicit_plot(eq1,(x,-2,5),(y,-2,5)) + implicit_plot(eq2,(x,-2,5),(y,-2,5))) But it sould

2021-08-21 19:13:23 +0200 edited question How do I plot multiple functions in one graph?

How do i plot multiple functions in 1 graph What i do: x, y = SR.var('x, y') eq1 = 2*x + y == 8 eq2 = 5x -7y == 1 im

2021-08-21 19:11:47 +0200 received badge  Editor (source)
2021-08-21 19:11:47 +0200 edited question How do I plot multiple functions in one graph?

How do i plot multiple functions in 1 graph What i do: x, y = SR.var('x, y') eq1 = 2*x + y == 8 eq2 = 5x -7y == 1 im

2021-08-21 19:11:31 +0200 asked a question How do I plot multiple functions in one graph?

How do i plot multiple functions in 1 graph What i do: x, y = SR.var('x, y') eq1 = 2x + y == 8 eq2 = 5x -7*y == 1 impli

2021-08-21 19:08:55 +0200 commented answer plot function not working (x^2+y^2=1)

Thanks :),

2021-08-21 18:59:06 +0200 received badge  Student (source)
2021-08-21 18:56:32 +0200 asked a question plot function not working (x^2+y^2=1)

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