Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

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 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?

How do i plot multiple functions in 1 graph

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?

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

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?

click to hide/show revision 4
None

How do i plot multiple functions in 1 graphgraph?

What i I do:

x, y = SR.var('x, y')

y') eq1 = 2*x + y == 8

8 eq2 = 5x -7y 5*x -7*y == 1

implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))

1 implicit_plot([eq1,eq2],(x,-2,5),(y,-2,5))

What i get is: I get:

TypeError: 'tuple' object is not callable

callable

What am I doing wrong?

click to hide/show revision 5
None

How do i plot multiple functions in 1 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?