What i do:
x, y = SR.var('x, y') eq1 = 2x + y == 8 eq2 = 5x -7*y == 1 implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))
What i get is: TypeError: 'tuple' object is not callable
What am I doing wrong?
1 | initial version |
What i do:
x, y = SR.var('x, y') eq1 = 2x + y == 8 eq2 = 5x -7*y == 1 implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))
What i get is: TypeError: 'tuple' object is not callable
What am I doing wrong?
What i do:
x, y = SR.var('x, y')
y')
eq1 = 2x 2*x + y == 8
8
eq2 = 5x -7x -7*y y == 1
1
implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))
What i get is: TypeError: 'tuple' object is not callable
What am I doing wrong?
What i do:
x, y = SR.var('x, y')
eq1 = 2*x + y == 8
eq2 = 5x -7y == 1
implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))
What i get is: TypeError: 'tuple' object is not callable
What am I doing wrong?
What i I do:
x, y = SR.var('x, implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))
What i get is:
I get:
TypeError: 'tuple' object is not callablecallable
What am I doing wrong?
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?